This is an automated email from the ASF dual-hosted git repository.
mattrpav pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq.git
The following commit(s) were added to refs/heads/main by this push:
new 89d0f2975 [AMQ-9350] Add JDK 21 to Jenkins CI job
89d0f2975 is described below
commit 89d0f2975d1c7ed1e8655231d516ccb9523b71e9
Author: Matt Pavlovich <[email protected]>
AuthorDate: Fri Oct 20 16:14:13 2023 -0500
[AMQ-9350] Add JDK 21 to Jenkins CI job
---
Jenkinsfile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index d3b36528d..59c0086d3 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -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'