work around jetty-distribution incremental build issue

This commit is contained in:
Joakim Erdfelt 2016-07-29 16:09:03 -07:00
parent db76da0fee
commit d6dd5046ce
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -30,7 +30,7 @@ node('linux') {
timeout(60) {
withEnv(mvnEnv) {
// Run test phase / ignore test failures
sh "mvn -B test -Dmaven.test.failure.ignore=true"
sh "mvn -B install -Dmaven.test.failure.ignore=true"
// Report failures in the jenkins UI
step([$class: 'JUnitResultArchiver', testResults: '**/target/surefire-reports/TEST-*.xml'])
}