Tweaking test stage issues with dependency plugin

This commit is contained in:
Joakim Erdfelt 2016-07-28 14:39:39 -07:00
parent 6fb03201f8
commit 71b0c88607
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

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