Skip to content

Commit

Permalink
Test against WSS4j 3.0.0 on CI.
Browse files Browse the repository at this point in the history
Resolves #1377.
Related: #1358.
  • Loading branch information
gregturn committed Sep 15, 2023
1 parent d427a37 commit f09be6e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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')}
Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,12 @@
<spring-security.version>${spring-security-next-gen-snapshot.version}</spring-security.version>
</properties>
</profile>
<profile>
<id>wss4j-next</id>
<properties>
<wss4j.version>3.0.0</wss4j.version>
</properties>
</profile>

<profile>
<id>convergence</id>
Expand Down

0 comments on commit f09be6e

Please sign in to comment.