Add skip tests to deploy stage

This commit is contained in:
Mateusz Pieła 2024-03-10 23:14:16 +01:00
parent d3d25b37ee
commit c56c33ad86

2
Jenkinsfile vendored
View file

@ -21,7 +21,7 @@ pipeline {
} }
stage('Deploy') { stage('Deploy') {
steps { steps {
sh 'mvn package' sh 'mvn package -Dmaven.test.skip'
archiveArtifacts artifacts: 'target/helloworld*.jar', fingerprint: true archiveArtifacts artifacts: 'target/helloworld*.jar', fingerprint: true
} }
} }