mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 15:25:49 +00:00
Create Jenkinsfile
This commit is contained in:
parent
56f09331aa
commit
ec113423da
1 changed files with 12 additions and 0 deletions
12
Jenkinsfile
vendored
Normal file
12
Jenkinsfile
vendored
Normal 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'
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue