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 8ba765bba [#9194] Add JDK 19 to Jenkins build (#955)
8ba765bba is described below
commit 8ba765bbaf7c812885da6de19b7a1756ea79f7a7
Author: Matt Pavlovich <[email protected]>
AuthorDate: Thu Jan 12 09:06:29 2023 -0600
[#9194] Add JDK 19 to Jenkins build (#955)
---
Jenkinsfile | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/Jenkinsfile b/Jenkinsfile
index 04c0e06df..b4df07c3b 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -63,6 +63,18 @@ pipeline {
}
}
+ stage('Build JDK 19') {
+ tools {
+ jdk "jdk_19_latest"
+ }
+ steps {
+ echo 'Building JDK 19'
+ sh 'java -version'
+ sh 'mvn -version'
+ sh 'mvn -U -B -e clean install -DskipTests'
+ }
+ }
+
stage('Build JDK 17') {
tools {
jdk "jdk_17_latest"