Issue #17819: buildSrc: Use Maven Central instead of JCenter and use artifact cache.

upstream-sync
Sebastian Kaspari 3 years ago
parent d2e6dc8f8d
commit 4f526b7af6

@ -7,5 +7,12 @@ plugins {
}
repositories {
jcenter()
if (project.hasProperty("centralRepo")) {
maven {
name "MavenCentral"
url project.property("centralRepo")
}
} else {
mavenCentral()
}
}

Loading…
Cancel
Save