[java-parent-project] branch main updated: Move non-plugin settings back into Jenkinsfile.

Codeberg noreply at shibboleth.net
Wed May 6 18:28:45 UTC 2026


This is an automated email from the git hooks/post-receive script.

codeberg pushed a commit to branch main
in repository java-parent-project.

View the commit online:
https://codeberg.org/Shibboleth/java-parent-project/commit/9ddff617280ec225e394a4985386f75d0a316fdf

The following commit(s) were added to refs/heads/main by this push:
     new 9ddff61  Move non-plugin settings back into Jenkinsfile.
9ddff61 is described below

commit 9ddff617280ec225e394a4985386f75d0a316fdf
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Wed May 6 14:28:31 2026 -0400

    Move non-plugin settings back into Jenkinsfile.
---
 resources/jenkins/idpversion.properties            |  9 ---------
 resources/jenkins/plugin-compatibility.jenkinsfile | 19 ++++++++++++++-----
 2 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/resources/jenkins/idpversion.properties b/resources/jenkins/idpversion.properties
deleted file mode 100644
index 5cfc1ab..0000000
--- a/resources/jenkins/idpversion.properties
+++ /dev/null
@@ -1,9 +0,0 @@
-IDP_BASE=5.0.0
-SHIBSHARED_BASE=9.0.0
-
-IDP_CUR=5.2.1
-SHIBSHARED_CUR=9.2.1
-
-IDP_SNAPSHOT=5.2.2-SNAPSHOT
-SHIBSHARED_SNAPSHOT=9.2.2-SNAPSHOT
-
diff --git a/resources/jenkins/plugin-compatibility.jenkinsfile b/resources/jenkins/plugin-compatibility.jenkinsfile
index 3b6cbfd..b92566e 100644
--- a/resources/jenkins/plugin-compatibility.jenkinsfile
+++ b/resources/jenkins/plugin-compatibility.jenkinsfile
@@ -1,3 +1,12 @@
+def IDP_BASE = "5.0.0"
+def SHIBSHARED_BASE = "9.0.0"
+
+def IDP_CUR = "5.2.1"
+def SHIBSHARED_CUR = "9.2.1"
+
+def IDP_SNAPSHOT = "5.2.2-SNAPSHOT"
+def SHIBSHARED_SNAPSHOT = "9.2.2-SNAPSHOT"
+
 pipeline {
 
     agent {
@@ -37,21 +46,21 @@ pipeline {
         stage('Test plugin snapshot with IdP API baseline version') {
             steps {
                 dir("${env.PROJNAME}-main") {
-                    sh "mvn clean test -Didp.version=${env.IDP_BASE} -Dshib-profile.version=${env.IDP_BASE} -Dshib-attribute.version=${env.IDP_BASE} -Dshib-metadata.version=${env.IDP_BASE} -Dopensaml.version=${env.IDP_BASE} -Dshib-shared.version=${env.SHIBSHARED_BASE}"
+                    sh "mvn clean test -Didp.version=${IDP_BASE -Dshib-profile.version=${IDP_BASE} -Dshib-attribute.version=${IDP_BASE} -Dshib-metadata.version=${IDP_BASE} -Dopensaml.version=${IDP_BASE} -Dshib-shared.version=${SHIBSHARED_BASE}"
                 }
             }
         }
         stage('Test plugin snapshot with current IdP version') {
             steps {
                 dir("${env.PROJNAME}-main") {
-                    sh "mvn clean test -Didp.version=${env.IDP_CUR} -Dshib-profile.version=${env.IDP_CUR} -Dshib-attribute.version=${env.IDP_CUR} -Dshib-metadata.version=${env.IDP_CUR} -Dopensaml.version=${env.IDP_CUR} -Dshib-shared.version=${env.SHIBSHARED_CUR}"
+                    sh "mvn clean test -Didp.version=${IDP_CUR} -Dshib-profile.version=${IDP_CUR} -Dshib-attribute.version=${IDP_CUR} -Dshib-metadata.version=${IDP_CUR} -Dopensaml.version=${IDP_CUR} -Dshib-shared.version=${SHIBSHARED_CUR}"
                 }
             }
         }
         stage('Test plugin snapshot with current IdP snapshot') {
             steps {
                 dir("${env.PROJNAME}-main") {
-                    sh "mvn clean test -Didp.version=${env.IDP_SNAPSHOT} -Dshib-profile.version=${env.IDP_SNAPSHOT} -Dshib-attribute.version=${env.IDP_SNAPSHOT} -Dshib-metadata.version=${env.IDP_SNAPSHOT} -Dopensaml.version=${env.IDP_SNAPSHOT} -Dshib-shared.version=${env.SHIBSHARED_SNAPSHOT}"
+                    sh "mvn clean test -Didp.version=${IDP_SNAPSHOT} -Dshib-profile.version=${IDP_SNAPSHOT} -Dshib-attribute.version=${IDP_SNAPSHOT} -Dshib-metadata.version=${IDP_SNAPSHOT} -Dopensaml.version=${IDP_SNAPSHOT} -Dshib-shared.version=${SHIBSHARED_SNAPSHOT}"
                 }
             }
         }
@@ -59,7 +68,7 @@ pipeline {
         stage('Test latest released plugin with current IdP version') {
             steps {
                 dir("${env.PROJNAME}-current") {
-                    sh "mvn clean test -Didp.version=${env.IDP_CUR} -Dshib-profile.version=${env.IDP_CUR} -Dshib-attribute.version=${env.IDP_CUR} -Dshib-metadata.version=${env.IDP_CUR} -Dopensaml.version=${env.IDP_CUR} -Dshib-shared.version=${env.SHIBSHARED_CUR}"
+                    sh "mvn clean test -Didp.version=${IDP_CUR} -Dshib-profile.version=${IDP_CUR} -Dshib-attribute.version=${IDP_CUR} -Dshib-metadata.version=${IDP_CUR} -Dopensaml.version=${IDP_CUR} -Dshib-shared.version=${SHIBSHARED_CUR}"
                 }
             }
         }
@@ -67,7 +76,7 @@ pipeline {
         stage('Test latest released plugin with current IdP snapshot') {
             steps {
                 dir("${env.PROJNAME}-current") {
-                    sh "mvn clean test -Didp.version=${env.IDP_SNAPSHOT} -Dshib-profile.version=${env.IDP_SNAPSHOT} -Dshib-attribute.version=${env.IDP_SNAPSHOT} -Dshib-metadata.version=${env.IDP_SNAPSHOT} -Dopensaml.version=${env.IDP_SNAPSHOT} -Dshib-shared.version=${env.SHIBSHARED_SNAPSHOT}"
+                    sh "mvn clean test -Didp.version=${IDP_SNAPSHOT} -Dshib-profile.version=${IDP_SNAPSHOT} -Dshib-attribute.version=${IDP_SNAPSHOT} -Dshib-metadata.version=${IDP_SNAPSHOT} -Dopensaml.version=${IDP_SNAPSHOT} -Dshib-shared.version=${SHIBSHARED_SNAPSHOT}"
                 }
             }
         }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list