Added the new changes

This commit is contained in:
n 2023-03-07 15:10:11 +05:30
parent b10540bd19
commit db786a8049

4
Jenkinsfile vendored
View file

@ -1,5 +1,5 @@
pipeliene {
agent { label 'JDK_17' }
agent { label 'any' }
triggers { pollSCM '* * * * *' }
stages {
stage( 'version control sysytem') {
@ -10,7 +10,7 @@ pipeliene {
}
stage( 'post build' ) {
steps {
archiveArtifacts artifacts: '**/libs/spring-petclinic-3.0.0/jar'
archiveArtifacts artifacts: '**/libs/spring-petclinic-3.0.0.jar'
onlyIfSuccesful: true
junit testResults: '**/test-results/test/TEST-*.xml'
}