Set RSocket version to Snapshot in snapshot build

This commit is contained in:
Eleftheria Stein 2020-07-14 18:37:43 +02:00
parent 683cb49c9d
commit 3d9de9bcb7
2 changed files with 4 additions and 2 deletions

2
Jenkinsfile vendored
View File

@ -89,7 +89,7 @@ try {
"GRADLE_ENTERPRISE_CACHE_USERNAME=${GRADLE_ENTERPRISE_CACHE_USERNAME}",
"GRADLE_ENTERPRISE_CACHE_PASSWORD=${GRADLE_ENTERPRISE_CACHE_PASSWORD}",
"GRADLE_ENTERPRISE_ACCESS_KEY=${GRADLE_ENTERPRISE_ACCESS_KEY}"]) {
sh "./gradlew test -PforceMavenRepositories=snapshot -PspringVersion='5.+' -PreactorVersion=20+ -PspringDataVersion=Lovelace-BUILD-SNAPSHOT -PlocksDisabled --stacktrace"
sh "./gradlew test -PforceMavenRepositories=snapshot -PspringVersion='5.+' -PreactorVersion=20+ -PspringDataVersion=Lovelace-BUILD-SNAPSHOT -PrsocketVersion=1.1.0-SNAPSHOT -PlocksDisabled --stacktrace"
}
}
} catch(Exception e) {

View File

@ -12,12 +12,14 @@ if (!project.hasProperty("springDataVersion")) {
if (!project.hasProperty("kotlinVersion")) {
ext.kotlinVersion = "1.+"
}
if (!project.hasProperty("rsocketVersion")) {
ext.rsocketVersion = "1.+"
}
if (!project.hasProperty("locksDisabled")) {
dependencyLocking {
lockAllConfigurations()
}
}
ext.rsocketVersion = "1.+"
ext.openSamlVersion = "3.+"
dependencies {