This is an automated email from the ASF dual-hosted git repository.
lukaszlenart pushed a commit to branch docker-build
in repository https://gitbox.apache.org/repos/asf/struts.git
The following commit(s) were added to refs/heads/docker-build by this push:
new 094092c Skips building assemblies
094092c is described below
commit 094092c3eae24c09b1755273ba65c9ce7a89f990
Author: Lukasz Lenart <lukaszlenart@apache.org>
AuthorDate: Fri Aug 30 09:14:41 2019 +0200
Skips building assemblies
---
Jenkinsfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index b1184bd..00b6f1a 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -24,7 +24,7 @@ pipeline {
stage('Build') {
steps {
- sh 'mvn -B -DskipTests -DskipWiki clean package'
+ sh 'mvn -B -DskipTests -DskipAssembly clean package'
}
}
|