Package earlier

This commit is contained in:
R. Tyler Croy 2017-04-25 07:51:08 -07:00 committed by GitHub
parent d1de46896f
commit d90fae654b
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -18,7 +18,7 @@ pipeline {
}
steps {
unstash 'ws'
sh './mvnw -B clean compile'
sh './mvnw -B -DskipTests=true clean compile package'
stash name: 'war', includes: 'target/**/*.war'
}
}
@ -34,7 +34,7 @@ pipeline {
'Unit' : {
unstash 'ws'
unstash 'war'
sh './mvnw -B test package'
sh './mvnw -B test'
junit '**/surefire-reports/**/*.xml'
},
'Performance' : {