Added post step

This commit is contained in:
Sohail 2023-03-05 12:24:31 +05:30
parent dbef79a5d8
commit c98dd02c5a

9
Jenkinsfile vendored
View file

@ -12,4 +12,13 @@ pipeline{
}
}
}
post{
success{
archiveArtifacts artifacts: '**/target/spring-petclinic-*.jar'
junit testResults: '**/surefire-reports/TEST-*.xml'
}
}
}