diff --git a/Jenkinsfile b/Jenkinsfile index 2bdcaa8..5a3b95a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,14 +9,14 @@ pipeline { extensions: [[$class: 'CleanBeforeCheckout']], userRemoteConfigs: [[credentialsId: 'github-kemitix', url: 'git@github.com:kemitix/conditional.git']] ]) - sh './mvnw clean install' + sh './mvnw -B -U clean install' junit '**/target/surefire-reports/*.xml' archiveArtifacts '**/target/*.jar' } } stage('Deploy') { steps { - sh './mvnw -Dskip-Tests=true -P release -B deploy' + sh './mvnw -B -Dskip-Tests=true -P release deploy' } } }