[AMQ-9235] Update Jenkins JDK 19 -> JDK 20 (#994)

JDK 20 compile succeeds
This commit is contained in:
Matt Pavlovich 2023-03-28 14:53:34 -05:00 committed by GitHub
parent 6e5838d82d
commit 1fdccd9cf4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

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