mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 23:35:50 +00:00
Create Jenkinsfile
This commit is contained in:
parent
8b8304fa25
commit
0f425a292f
1 changed files with 15 additions and 0 deletions
15
Jenkinsfile
vendored
Normal file
15
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
pipeline {
|
||||
agent any
|
||||
stages {
|
||||
stage ('Checkout') {
|
||||
steps {
|
||||
git branch: 'main', url: 'https://github.com/gjraju1304/spring-petclinic.git'
|
||||
}
|
||||
}
|
||||
stage ('Build') {
|
||||
steps {
|
||||
sh "mvn clean install"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue