Update Jenkinsfile

This commit is contained in:
gjraju1304 2023-12-10 11:40:37 +05:30 committed by GitHub
parent 9f6fb76114
commit 879b3fd204
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
Jenkinsfile vendored
View file

@ -14,5 +14,15 @@ pipeline {
sh "mvn clean install"
}
}
stage ('artifact') {
steps {
archiveArtifacts artifacts: '**/*.jar', followSymlinks: false
}
}
stage ('unit test') {
steps {
junit '**/TEST*.xml'
}
}
}
}