Added Jenkinsfile

This commit is contained in:
VTR 2024-07-29 16:36:43 +05:30
parent 448f168090
commit 20445233f6

11
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,11 @@
node('Open-JDK8-8') {
stage('Versioncontrol') {
git branch: 'REL_INT_1.0', url: 'https://github.com/thippareddy03/spring-petclinic.git'
}
stage('BuildPackage') {
sh '/usr/share/maven/bin/mvn package'
}
stage('unittest') {
junit '**/surefire-reports/*.xml'
}
}