mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-24 00:35:49 +00:00
Create Jenkinsfile
This commit is contained in:
parent
10e3dc9376
commit
93d5461229
1 changed files with 17 additions and 0 deletions
17
Jenkinsfile
vendored
Normal file
17
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
pipeline {
|
||||
agent any
|
||||
|
||||
stages {
|
||||
stage('Build'){
|
||||
steps {
|
||||
git url: 'https://github.com/saisrinisrinivas/spring-petclinic.git'
|
||||
}
|
||||
|
||||
}
|
||||
stage('Run'){
|
||||
steps {
|
||||
sh 'mvn package'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in a new issue