You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by de...@apache.org on 2020/08/04 06:25:40 UTC

[cxf] branch master updated: Jenkins: try ${JAVA_VERSION} instead of ${JDK}

This is an automated email from the ASF dual-hosted git repository.

deki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/master by this push:
     new 5e2655a  Jenkins: try ${JAVA_VERSION} instead of ${JDK}
5e2655a is described below

commit 5e2655a268e22622aac4f8835b71b942df8e5ff7
Author: Dennis Kieselhorst <de...@apache.org>
AuthorDate: Tue Aug 4 08:25:29 2020 +0200

    Jenkins: try ${JAVA_VERSION} instead of ${JDK}
---
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index d4f3df3..63d7627 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -32,7 +32,7 @@ pipeline {
         }
         axes {
           axis {
-            name 'JDK'
+            name 'JAVA_VERSION'
             values 'JDK 8 (latest)', 'JDK 11 (latest)'
           }
         }
@@ -42,7 +42,7 @@ pipeline {
               label 'ubuntu'
             }
             tools {
-              jdk "${JDK}"
+              jdk "${JAVA_VERSION}"
               maven 'Maven (latest)'
             }
             environment {