Remove JCenter
JFrog has announced their intentions to remove JCenter so it has to go
This commit is contained in:
parent
e75e0a07d1
commit
0028261847
1 changed files with 5 additions and 3 deletions
|
@ -3,8 +3,9 @@
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.4.30'
|
ext.kotlin_version = '1.4.30'
|
||||||
repositories {
|
repositories {
|
||||||
jcenter()
|
|
||||||
google()
|
google()
|
||||||
|
mavenCentral()
|
||||||
|
maven {url 'https://plugins.gradle.org/m2/' }
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:4.1.2'
|
classpath 'com.android.tools.build:gradle:4.1.2'
|
||||||
|
@ -16,12 +17,13 @@ buildscript {
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
repositories {
|
repositories {
|
||||||
jcenter()
|
google()
|
||||||
|
mavenCentral()
|
||||||
maven {
|
maven {
|
||||||
url "https://s3.amazonaws.com/repo.commonsware.com"
|
url "https://s3.amazonaws.com/repo.commonsware.com"
|
||||||
}
|
}
|
||||||
maven { url 'https://maven.google.com' }
|
maven { url 'https://maven.google.com' }
|
||||||
google()
|
maven {url 'https://plugins.gradle.org/m2/' }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue