added scripted file

This commit is contained in:
Venkatesh 2022-09-27 11:22:10 +05:30
parent 51592a96dd
commit 6a91fd76e9

8
jenkinfilescripted Normal file
View file

@ -0,0 +1,8 @@
node('JDK-11') {
stage('scm') {
git branch: 'main', url: 'https://github.com/GUDAPATIVENKATESH/spring-petclinic.git'
}
stage('build') {
sh 'mvn package'
}
}