From f09be6ea6901fb446361c0773cfc739464f6cb6a Mon Sep 17 00:00:00 2001 From: "Greg L. Turnquist" Date: Fri, 15 Sep 2023 13:07:27 -0500 Subject: [PATCH] Test against WSS4j 3.0.0 on CI. Resolves #1377. Related: #1358. --- Jenkinsfile | 17 +++++++++++++++++ pom.xml | 6 ++++++ 2 files changed, 23 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index ff73b1ff..cde54ff6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -73,6 +73,23 @@ pipeline { } } + stage("Test: wss4j-next (main)") { + agent any + options { timeout(time: 30, unit: 'MINUTES')} + environment { + ARTIFACTORY = credentials("${p['artifactory.credentials']}") + GRADLE_ENTERPRISE_CACHE = credentials("${p['gradle-enterprise-cache.credentials']}") + GRADLE_ENTERPRISE_ACCESS_KEY = credentials("${p['gradle-enterprise.access-key']}") + } + steps { + script { + docker.image(p['docker.java.main.image']).inside(p['docker.java.inside.basic']) { + sh "PROFILE=jakarta-ee-10,wss4j-next,convergence ci/test.sh" + } + } + } + } + stage("Test: spring-next-gen (main)") { agent any options { timeout(time: 30, unit: 'MINUTES')} diff --git a/pom.xml b/pom.xml index 1c51d9ac..8b77c8f7 100644 --- a/pom.xml +++ b/pom.xml @@ -348,6 +348,12 @@ ${spring-security-next-gen-snapshot.version} + + wss4j-next + + 3.0.0 + + convergence