disable junit for regular build phase

This commit is contained in:
verboomp
2026-01-20 11:52:32 +01:00
parent 05b0ced8dd
commit 4b4353f133

4
Jenkinsfile vendored
View File

@@ -117,11 +117,11 @@ pipeline {
steps {
echo "running build for branch ${env.BRANCH_NAME}"
//sh 'mvn dependency:purge-local-repository clean -U -f hartmann-foto-documentation/pom.xml '
sh 'mvn deploy -U -f pom.xml '
sh 'mvn deploy -U -f pom.xml'
}
post {
success {
junit '**/target/surefire-reports/*.xml'
//junit '**/target/surefire-reports/*.xml'
archiveArtifacts artifacts: '**/target/*.war, **/target/*.zip', fingerprint: true
}