Tries fixing maven build errors by cleaning
Some checks failed
KnarCraft/FFmpegConvert/master There was a failure building this commit

This commit is contained in:
Kristian Knarvik 2020-02-11 20:34:20 +01:00
parent 93f8a28872
commit fd55abec4d

4
Jenkinsfile vendored
View File

@ -10,13 +10,13 @@ pipeline {
stage('Test') { stage('Test') {
steps { steps {
echo 'Testing...' echo 'Testing...'
sh 'mvn test' sh 'mvn clean & mvn test'
} }
} }
stage('Deploy') { stage('Deploy') {
steps { steps {
echo 'Deploying...' echo 'Deploying...'
sh 'mvn package & mvn verify & mvn install & mvn deploy' sh 'mvn clean & mvn compile & mvn package & mvn verify & mvn install & mvn deploy'
} }
} }
} }