Temporarily work around problems with Gradle's plugin portal

This commit is contained in:
Andy Wilkinson 2022-11-08 10:17:37 +00:00
parent ac6ad7c0f1
commit fb954e8109
2 changed files with 10 additions and 0 deletions

View File

@ -8,6 +8,11 @@ repositories {
mavenCentral()
gradlePluginPortal()
maven { url "https://repo.spring.io/release" }
jcenter() {
content {
includeGroup("org.ysb33r.gradle")
}
}
}
sourceCompatibility = 1.8

View File

@ -8,6 +8,11 @@ pluginManagement {
if (version.endsWith('-SNAPSHOT')) {
maven { url "https://repo.spring.io/snapshot" }
}
jcenter() {
content {
includeGroup("org.ysb33r.gradle")
}
}
}
resolutionStrategy {
eachPlugin {