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.git
The following commit(s) were added to refs/heads/master by this push:
new a9fda7d28f Use Maven 3.9.12 on jenkins
a9fda7d28f is described below
commit a9fda7d28fbd7495f576da6db7c27df24e9f8e22
Author: Slawomir Jaranowski <[email protected]>
AuthorDate: Sun Jan 25 11:35:57 2026 +0100
Use Maven 3.9.12 on jenkins
---
Jenkinsfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index a1bc86896e..9c61e6c153 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -21,7 +21,7 @@ pipeline {
withEnv(["JAVA_HOME=${tool "jdk_17_latest"}",
"PATH+MAVEN=${ tool "jdk_17_latest" }/bin:${tool
"maven_3_latest"}/bin",
"MAVEN_OPTS=-Xms4G -Xmx4G -Djava.awt.headless=true"]) {
- sh "mvn clean deploy -DdeployAtEnd=true -B"
+ sh "./mvn clean deploy -DdeployAtEnd=true -B -V"
}
}
}
@@ -50,7 +50,7 @@ def mavenBuild(jdk, extraArgs) {
withEnv(["JAVA_HOME=${tool "$jdk"}",
"PATH+MAVEN=${tool "$jdk"}/bin:${tool "maven_3_latest"}/bin",
"MAVEN_OPTS=-Xms4G -Xmx4G -Djava.awt.headless=true"]) {
- sh "mvn --errors --batch-mode --show-version
org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper -Dmaven=3.9.10"
+ sh "mvn --errors --batch-mode --show-version
org.apache.maven.plugins:maven-wrapper-plugin:3.3.4:wrapper -Dmaven=3.9.12"
sh "echo run Its"
sh "./mvnw -e -B -V install $extraArgs"
}