Prevents tests from being re-run during deployment stage
All checks were successful
KnarCraft/Minecraft-Server-Launcher/pipeline/head This commit looks good

This commit is contained in:
Kristian Knarvik 2020-08-17 12:24:33 +02:00
parent 1d49229b87
commit a5db6b3a70

2
Jenkinsfile vendored
View File

@ -16,7 +16,7 @@ pipeline {
stage('Deploy') {
steps {
echo 'Deploying...'
sh 'mvn package & mvn verify'
sh 'mvn verify -Dmaven.test.skip=true'
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
}
}