Create gradlescripted.yaml

This commit is contained in:
lakshmi164585 2023-03-04 14:28:48 +05:30 committed by GitHub
parent 2fed33bf1d
commit 1884aef271
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

12
gradlescripted.yaml Normal file
View file

@ -0,0 +1,12 @@
node('maven_ubuntu')
{
stage('vcs')
{
git 'https://github.com/lakshmi164585/spring-petclinic.git'
}
stage('build')
{
sh './gradlew'
}
}