From 599f8905c5b437f09e062e164c2f12b0c5d48b76 Mon Sep 17 00:00:00 2001 From: "Greg L. Turnquist" Date: Tue, 20 Apr 2021 11:02:57 -0500 Subject: [PATCH] Polishing. --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1ed1445e..856599b2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,7 @@ pipeline { triggers { pollSCM 'H/10 * * * *' - upstream(upstreamProjects: "spring-data-commons/master", threshold: hudson.model.Result.SUCCESS) + upstream(upstreamProjects: "spring-data-commons/2.5.x", threshold: hudson.model.Result.SUCCESS) } options { @@ -15,7 +15,7 @@ pipeline { stage("test: baseline (jdk8)") { when { anyOf { - branch 'master' + branch '4.2.x' not { triggeredBy 'UpstreamCause' } } } @@ -45,7 +45,7 @@ pipeline { stage("Test other configurations") { when { allOf { - branch 'master' + branch '4.2.x' not { triggeredBy 'UpstreamCause' } } } @@ -103,7 +103,7 @@ pipeline { stage('Release to artifactory') { when { anyOf { - branch 'master' + branch '4.2.x' not { triggeredBy 'UpstreamCause' } } }