[#26] Use MavenCentral instead of JCenter

This commit is contained in:
Carter Jernigan 2022-04-20 15:42:21 -04:00
parent 1f3a9e821d
commit 6cf0e352e6
2 changed files with 1 additions and 6 deletions

View File

@ -2,22 +2,17 @@ import cash.z.ecc.android.Deps
buildscript {
repositories {
mavenLocal()
google()
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${Deps.kotlinVersion}"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.+'
}
}
allprojects {
repositories {
mavenLocal()
google()
jcenter()
mavenCentral()
}
}

View File

@ -3,7 +3,7 @@ plugins {
}
repositories {
jcenter()
mavenCentral()
}
// Per conversation in the KotlinLang Slack, Gradle uses Java 8 compatibility internally