Merge branch '4.0.x'

This commit is contained in:
Marcin Grzejszczak
2023-07-03 07:05:48 +02:00
8 changed files with 71 additions and 15 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()
}
}