Skip to content

Commit 3d9de9b

Browse files
committed
Set RSocket version to Snapshot in snapshot build
1 parent 683cb49 commit 3d9de9b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ try {
8989
"GRADLE_ENTERPRISE_CACHE_USERNAME=${GRADLE_ENTERPRISE_CACHE_USERNAME}",
9090
"GRADLE_ENTERPRISE_CACHE_PASSWORD=${GRADLE_ENTERPRISE_CACHE_PASSWORD}",
9191
"GRADLE_ENTERPRISE_ACCESS_KEY=${GRADLE_ENTERPRISE_ACCESS_KEY}"]) {
92-
sh "./gradlew test -PforceMavenRepositories=snapshot -PspringVersion='5.+' -PreactorVersion=20+ -PspringDataVersion=Lovelace-BUILD-SNAPSHOT -PlocksDisabled --stacktrace"
92+
sh "./gradlew test -PforceMavenRepositories=snapshot -PspringVersion='5.+' -PreactorVersion=20+ -PspringDataVersion=Lovelace-BUILD-SNAPSHOT -PrsocketVersion=1.1.0-SNAPSHOT -PlocksDisabled --stacktrace"
9393
}
9494
}
9595
} catch(Exception e) {

gradle/dependency-management.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ if (!project.hasProperty("springDataVersion")) {
1212
if (!project.hasProperty("kotlinVersion")) {
1313
ext.kotlinVersion = "1.+"
1414
}
15+
if (!project.hasProperty("rsocketVersion")) {
16+
ext.rsocketVersion = "1.+"
17+
}
1518
if (!project.hasProperty("locksDisabled")) {
1619
dependencyLocking {
1720
lockAllConfigurations()
1821
}
1922
}
20-
ext.rsocketVersion = "1.+"
2123
ext.openSamlVersion = "3.+"
2224

2325
dependencies {

0 commit comments

Comments
 (0)