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 e25ec15e1b Use Maven 3.9.12 on jenkins - fix deploy step
e25ec15e1b is described below
commit e25ec15e1b4d2189d8f862197c9adbfb13b1f53f
Author: Slawomir Jaranowski <[email protected]>
AuthorDate: Sun Jan 25 19:17:14 2026 +0100
Use Maven 3.9.12 on jenkins - fix deploy step
---
Jenkinsfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 9c61e6c153..2ee9e8f054 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 -V"
+ sh "./mvnw clean deploy -DdeployAtEnd=true -B -V"
}
}
}