[java-parent-project] branch main updated: Stab at conditionalizing base versions.
Codeberg
noreply at shibboleth.net
Fri May 15 16:22:37 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/39054e88fd25d85c52b5b9b6726189dff2a2c1ee
The following commit(s) were added to refs/heads/main by this push:
new 39054e8 Stab at conditionalizing base versions.
39054e8 is described below
commit 39054e88fd25d85c52b5b9b6726189dff2a2c1ee
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Fri May 15 12:22:23 2026 -0400
Stab at conditionalizing base versions.
---
resources/jenkins/plugin-compatibility.jenkinsfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/resources/jenkins/plugin-compatibility.jenkinsfile b/resources/jenkins/plugin-compatibility.jenkinsfile
index 28ddddd..ca8b092 100644
--- a/resources/jenkins/plugin-compatibility.jenkinsfile
+++ b/resources/jenkins/plugin-compatibility.jenkinsfile
@@ -1,5 +1,5 @@
-def IDP_BASE = "5.0.0"
-def SHIBSHARED_BASE = "9.0.0"
+def IDP_BASE = "${env.IDP_BASE == '' ? '5.0.0' : env.IDP_BASE}"
+def SHIBSHARED_BASE = "${env.SHIBSHARED_BASE == '' ? '9.0.0' : env.SHIBSHARED_BASE}"
def IDP_CUR = "5.2.2"
def SHIBSHARED_CUR = "9.2.2"
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list