This commit is contained in:
avinash 2023-03-05 15:57:30 +05:30
parent f2d9c9b63f
commit a12492ff6c

16
whitemirch Normal file
View file

@ -0,0 +1,16 @@
pipeline{
agent{label 'MAVEN_JDK17'}
stages{
stage('vcs'){
steps{
git branch:'main' ,
url: 'https://github.com/spring-projects/spring-petclinic.git'
}
}
stage('package') {
steps {
sh './gradlew build'
}
}
}
}