Prevents install in deploy phase
Some checks failed
EpicKnarvik97/DynmapCitizens/pipeline/head There was a failure building this commit

This commit is contained in:
Kristian Knarvik 2022-11-26 15:08:16 +01:00
parent e14607140f
commit 06d63bd6fc

2
Jenkinsfile vendored
View File

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