Added maven build to Jenkinsfile

This commit is contained in:
Andreas Greiner 2021-08-06 21:49:53 +02:00
parent c653935996
commit e2d4c3278b

7
Jenkinsfile vendored
View File

@ -16,7 +16,12 @@ pipeline {
stage ('Build') {
steps {
echo 'This is a minimal pipeline.'
sh 'mvn -Dmaven.test.failure.ignore=true install'
}
post {
success {
junit 'target/surefire-reports/**/*.xml'
}
}
}
}