This is an automated email from the ASF dual-hosted git repository.
sjaranowski 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 6f7f2d3 Remove Maven 3.6.x from plugins build
6f7f2d3 is described below
commit 6f7f2d31dcd131c17021dc0cf9ad3ba5a34809dc
Author: Slawomir Jaranowski <[email protected]>
AuthorDate: Thu Nov 13 23:09:20 2025 +0100
Remove Maven 3.6.x from plugins build
---
vars/asfMavenTlpPlgnBuild.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/vars/asfMavenTlpPlgnBuild.groovy b/vars/asfMavenTlpPlgnBuild.groovy
index 83e0b51..7182a4b 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','21']
def jdkMin = jdks[0];
- def mavens = params.containsKey('maven') ? params.maven : ['3.6.x',
'3.9.x']
+ def mavens = params.containsKey('maven') ? params.maven : ['3.9.x']
// def failFast = params.containsKey('failFast') ? params.failFast : true
// Just temporarily
def failFast = false;