You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2022/12/02 06:24:14 UTC

[maven-jenkins-lib] branch master updated: test only mvn 3.6.x and 3.8.x

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 34b2f11  test only mvn 3.6.x and 3.8.x
34b2f11 is described below

commit 34b2f11189e32c9c1bdcb58de38bad5908db2aad
Author: Olivier Lamy <ol...@apache.org>
AuthorDate: Fri Dec 2 16:24:10 2022 +1000

    test only mvn 3.6.x and 3.8.x
---
 vars/asfMavenTlpPlgnBuild.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vars/asfMavenTlpPlgnBuild.groovy b/vars/asfMavenTlpPlgnBuild.groovy
index 776c9ac..1a41f61 100644
--- a/vars/asfMavenTlpPlgnBuild.groovy
+++ b/vars/asfMavenTlpPlgnBuild.groovy
@@ -40,7 +40,7 @@ def call(Map params = [:]) {
     // minimum, LTS, current and next ea
     def jdks = params.containsKey('jdks') ? params.jdks : params.containsKey('jdk') ? params.jdk : ['8','11','17']
     def jdkMin = jdks[0];
-    def mavens = params.containsKey('maven') ? params.maven : ['3.2.x','3.6.x', '3.8.x']
+    def mavens = params.containsKey('maven') ? params.maven : ['3.6.x', '3.8.x']
     // def failFast = params.containsKey('failFast') ? params.failFast : true
     // Just temporarily
     def failFast = false;