Remove buildSrc module's dependency on JCenter

(cherry picked from commit 33660de6b1f0497d6b9b293197dc289786194d40)

# Conflicts:
#	build.gradle.kts
This commit is contained in:
arkon 2021-02-04 09:01:56 -05:00 committed by Jobobby04
parent 15b826074f
commit c635d72b30
3 changed files with 2 additions and 9 deletions

View File

@ -342,11 +342,6 @@ buildscript {
} }
} }
repositories {
mavenCentral()
jcenter()
}
// Git is needed in your system PATH for these commands to work. // Git is needed in your system PATH for these commands to work.
// If it's not installed, you can return a random value as a workaround // If it's not installed, you can return a random value as a workaround

View File

@ -9,11 +9,9 @@ plugins {
allprojects { allprojects {
repositories { repositories {
mavenCentral() mavenCentral()
jcenter()
google() google()
maven { setUrl("https://www.jitpack.io") } maven { setUrl("https://www.jitpack.io") }
maven { setUrl("https://oss.sonatype.org/content/repositories/snapshots/") } jcenter()
maven { setUrl("https://dl.bintray.com/ibm-cloud-sdks/ibm-cloud-sdk-repo") }
} }
} }

View File

@ -2,5 +2,5 @@ plugins {
`kotlin-dsl` `kotlin-dsl`
} }
repositories { repositories {
jcenter() mavenCentral()
} }