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 1fdccd9cf [AMQ-9235] Update Jenkins JDK 19 -> JDK 20 (#994)
1fdccd9cf is described below
commit 1fdccd9cf456cd64696b3094b445f14583fc383e
Author: Matt Pavlovich <[email protected]>
AuthorDate: Tue Mar 28 14:53:34 2023 -0500
[AMQ-9235] Update Jenkins JDK 19 -> JDK 20 (#994)
JDK 20 compile succeeds
---
Jenkinsfile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 80db4d500..c1880aa85 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -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'