Commenting out spring release repository

This commit is contained in:
Marcin Grzejszczak
2023-06-29 11:23:11 +02:00
parent 17a5fa0c5d
commit 0c910155ba
19 changed files with 59 additions and 59 deletions

View File

@@ -4,10 +4,10 @@ buildscript {
repositories {
mavenLocal()
mavenCentral()
if (!"${verifierVersion}".contains("RELEASE")) {
if ("${verifierVersion}".contains("SNAPSHOT")) {
maven { url "https://repo.spring.io/snapshot" }
} else if ("${verifierVersion}".contains("M") || "${verifierVersion}".contains("RC")) {
maven { url "https://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/release" }
}
}

View File

@@ -3,7 +3,7 @@ repositories {
mavenCentral()
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/release" }
// maven { url "https://repo.spring.io/release" }
}
ext {
@@ -18,4 +18,4 @@ dependencies {
test {
useJUnitPlatform()
}
}