Create Jenkinsfile

This commit is contained in:
varunak12 2020-04-20 14:12:44 +05:30 committed by GitHub
parent 56f09331aa
commit ec113423da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

12
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,12 @@
node {
stage('SCM Checkout'){
git branch: 'master',
credentialsId: 'github',
url: 'https://github.com/varunak12/spring-petclinic'
}
stage "compile package"{
sh 'mvn package'
}
}