This commit is contained in:
jhansi06 2025-12-15 12:54:08 +05:30
parent 3e1ce239f4
commit d2b6f4d4ab

15
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,15 @@
pipeline {
agent any
stages {
stage("BuildCode"){
steps {
sh """
cd spring-petclinic
./mvnw package
java -jar target/*.jar
"""
}
}
}
}