[AMQ-9350] Add JDK 21 to Jenkins CI job

This commit is contained in:
Matt Pavlovich 2023-10-20 16:14:13 -05:00
parent 9db69bc299
commit 89d0f2975d
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -68,12 +68,12 @@ pipeline {
}
}
stage('Build JDK 20') {
stage('Build JDK 21') {
tools {
jdk "jdk_20_latest"
jdk "jdk_21_latest"
}
steps {
echo 'Building JDK 20'
echo 'Building JDK 21'
sh 'java -version'
sh 'mvn -version'
sh 'mvn -U -B -e clean install -DskipTests'