Skip to content

Commit

Permalink
chore: Remove jcenter. (#118)
Browse files Browse the repository at this point in the history
* chore: Remove jcenter.

* Volley and newer kotlin versions.
  • Loading branch information
arriolac authored Jun 4, 2021
1 parent 9b9ffe5 commit 01efbad
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
12 changes: 7 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,13 @@ buildscript {
'junit' : '1.1.1',
],
'junit' : '4.12',
'kotlin' : '1.4.0',
'kotlinxCoroutines': '1.3.2',
'kotlin' : '1.4.32',
'kotlinxCoroutines': '1.4.3',
'mapsBeta' : '3.1.0-beta',
'mockito' : '3.0.0',
'mockitoKotlin' : '2.2.0',
'playServices' : '17.0.0',
'volley' : '1.2.0',
]

ext.deps = [
Expand All @@ -60,15 +61,16 @@ buildscript {
'playServices' : [
'maps' : "com.google.android.gms:play-services-maps:$versions.playServices",
],
'volley' : "com.android.volley:volley:$versions.volley",
]

repositories {
google()
jcenter()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.2'
classpath 'com.android.tools.build:gradle:4.1.3'
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:0.10.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin"
classpath 'com.hiya:jacoco-android:0.2'
Expand Down Expand Up @@ -96,7 +98,7 @@ allprojects {

repositories {
google()
jcenter()
mavenCentral()
flatDir {
dirs 'libs'
}
Expand Down
1 change: 1 addition & 0 deletions maps-utils-v3-ktx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ android {
dependencies {
implementation deps.kotlin
implementation deps.kotlinxCoroutines
implementation deps.volley
api deps.androidMapsUtils.v3
api deps.mapsBeta

Expand Down
1 change: 1 addition & 0 deletions maps-v3-ktx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ android {
dependencies {
implementation deps.kotlin
implementation deps.kotlinxCoroutines
implementation deps.volley
api deps.mapsBeta

// Tests
Expand Down

0 comments on commit 01efbad

Please sign in to comment.