From ab14b570637a057b6a6ef01e3046a2ce3b40e9c0 Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Wed, 15 May 2019 10:35:48 -0500 Subject: [PATCH] Snapshot Tests use Framework 5.1.x The 5.1.x code will only update patch versions of Spring Framework, so we should lock down the Snapshot tests to use the latest 5.1.x changes Fixes: gh-6880 --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 88c32258ba..2bbed51fdc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -48,7 +48,7 @@ try { node { checkout scm try { - sh "./gradlew clean test -PforceMavenRepositories=snapshot -PspringVersion='5.+' -PreactorVersion=Californium-BUILD-SNAPSHOT -PspringDataVersion=Lovelace-BUILD-SNAPSHOT --refresh-dependencies --no-daemon --stacktrace" + sh "./gradlew clean test -PforceMavenRepositories=snapshot -PspringVersion='5.1.+' -PreactorVersion=Californium-BUILD-SNAPSHOT -PspringDataVersion=Lovelace-BUILD-SNAPSHOT --refresh-dependencies --no-daemon --stacktrace" } catch(Exception e) { currentBuild.result = 'FAILED: snapshots' throw e