This is an automated email from the ASF dual-hosted git repository.
adriancole pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-zipkin-brave-karaf.git
The following commit(s) were added to refs/heads/master by this push:
new 0542a96 Removes task dependencies in deploy when publishing snapshots
(#23)
0542a96 is described below
commit 0542a961802d7a1818fbf374b4a5fe2d423f7028
Author: Adrian Cole <[email protected]>
AuthorDate: Fri Feb 1 11:08:30 2019 +0100
Removes task dependencies in deploy when publishing snapshots (#23)
Good idea from @shakuzen, we shouldn't need to run depedencies of deploy
as they are done prior.
---
Jenkinsfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index c4e2c76..571768c 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -62,7 +62,7 @@ pipeline {
branch 'master'
}
steps {
- sh './mvnw deploy -Papache-release -Dgpg.skip=true -DskipTests
--batch-mode -pl -:brave-itests -nsu'
+ sh './mvnw deploy:deploy -Papache-release -Dgpg.skip=true
--batch-mode -pl -:brave-itests -nsu'
}
}
}