This is an automated email from the ASF dual-hosted git repository.
martinkanters 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 c10869c Restored the full maven version matrix default
c10869c is described below
commit c10869c6952fe48d6d66f394802101bdc6d1a537
Author: Martin Kanters <[email protected]>
AuthorDate: Mon Oct 5 16:49:57 2020 +0200
Restored the full maven version matrix default
---
vars/asfMavenTlpPlgnBuild.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/vars/asfMavenTlpPlgnBuild.groovy b/vars/asfMavenTlpPlgnBuild.groovy
index a3330aa..d49c904 100644
--- a/vars/asfMavenTlpPlgnBuild.groovy
+++ b/vars/asfMavenTlpPlgnBuild.groovy
@@ -36,7 +36,7 @@ def call(Map params = [:]) {
// minimum, LTS, current and next ea
def jdks = params.containsKey('jdks') ? params.jdks :
params.containsKey('jdk') ? params.jdk : ['7','8','11','15','16']
def jdkMin = jdks[0];
- def mavens = params.containsKey('maven') ? params.maven :
['3.3.x','3.6.x']//['3.2.x','3.3.x','3.5.x','3.6.x']
+ def mavens = params.containsKey('maven') ? params.maven :
['3.2.x','3.3.x','3.5.x','3.6.x']
// def failFast = params.containsKey('failFast') ? params.failFast : true
// Just temporarily
def failFast = false;