This is an automated email from the ASF dual-hosted git repository.
apupier pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
The following commit(s) were added to refs/heads/main by this push:
new 4e640ac134e CAMEL-24290 - remove local install when doing deploy of
snapshot on Jenkins
4e640ac134e is described below
commit 4e640ac134e446f20a04e5e6bee20151b2630ccb
Author: Aurélien Pupier <[email protected]>
AuthorDate: Thu Sep 17 16:05:38 2026 +0200
CAMEL-24290 - remove local install when doing deploy of snapshot on
Jenkins
the snapshots are not used.
It allows to save time and avoid bad interaction with other camel jobs
which could have to clean the local .m2.
Signed-off-by: Aurélien Pupier <[email protected]>
---
Jenkinsfile.sb.deploy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Jenkinsfile.sb.deploy b/Jenkinsfile.sb.deploy
index 79f76d59584..f249b012d78 100644
--- a/Jenkinsfile.sb.deploy
+++ b/Jenkinsfile.sb.deploy
@@ -59,7 +59,7 @@ pipeline {
}
}
steps {
- sh "./mvnw $MAVEN_PARAMS -Pdeploy -Dmaven.test.skip.exec=true
clean deploy"
+ sh "./mvnw $MAVEN_PARAMS -Pdeploy -Dmaven.test.skip.exec=true
-Dmaven.install.skip=true clean deploy"
}
}