Added the name change in pipeline

This commit is contained in:
n 2023-03-07 15:27:45 +05:30
parent 30995b0d16
commit 85c461846c

4
Jenkinsfile vendored
View file

@ -15,8 +15,8 @@ pipeline {
}
stage( 'post build' ) {
steps {
archiveArtifacts artifacts: '**/spring-petclinic-3.0.0.jar'
onlyIfSuccesful: 'true'
archiveArtifacts artifacts: '**/spring-petclinic-3.0.0.jar',
onlyIfSuccesful: 'true',
junit testResults: '**/test-results/test/TEST-*.xml'
}
}