You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2019/01/20 10:56:33 UTC

[maven-jenkins-env] branch master updated: Add support for Maven 3.6.x/3.6.0

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

slachiewicz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-jenkins-env.git


The following commit(s) were added to refs/heads/master by this push:
     new 301add8  Add support for Maven 3.6.x/3.6.0
301add8 is described below

commit 301add823574336a6bc9f551351ac881b87e0d79
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sun Jan 20 11:55:01 2019 +0100

    Add support for Maven 3.6.x/3.6.0
---
 vars/jenkinsEnv.groovy | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/vars/jenkinsEnv.groovy b/vars/jenkinsEnv.groovy
index 9f62884..39aabe1 100644
--- a/vars/jenkinsEnv.groovy
+++ b/vars/jenkinsEnv.groovy
@@ -90,6 +90,9 @@ class jenkinsEnv implements Serializable {
                     case ~/^3\.3\.[x9]$/:
                         return 'Maven 3.3.9'
                     case ~/^3\.5\.[x4]$/:
+                        return 'Maven 3.5.4'
+                    case ~/^3\.6\.[x0]$/:
+                        return 'Maven 3.6.0'
                     case '3.x.x':
                         return 'Maven 3.5.4'
                     default:
@@ -104,6 +107,9 @@ class jenkinsEnv implements Serializable {
                     case ~/^3\.3\.[x9]$/:
                         return 'Maven 3.3.9 (Windows)'
                     case ~/^3\.5\.[x4]$/:
+                        return 'Maven 3.5.2 (Windows)'
+                    case ~/^3\.6\.[x0]$/:
+                        return 'Maven 3.6.0 (Windows)'
                     case '3.x.x':
                         return 'Maven 3.5.2 (Windows)'
                     default:
@@ -117,7 +123,7 @@ class jenkinsEnv implements Serializable {
         switch(version) {
             case ~/^3\.0\..+/:
                 return '6'
-            case ~/^3\.[235]\..+/:
+            case ~/^3\.[2356]\..+/:
             case '3.x.x':
                 return '7'
             default: