mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-27 09:25:49 +00:00
Create Jenkinsfile
This commit is contained in:
parent
e7c879ed3a
commit
ffee1e6fe7
1 changed files with 13 additions and 0 deletions
13
Jenkinsfile
vendored
Normal file
13
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
pipeline {
|
||||||
|
agent any
|
||||||
|
stages {
|
||||||
|
stage('Build') {
|
||||||
|
steps {
|
||||||
|
echo 'Running build automation'
|
||||||
|
sh './mvnw package'
|
||||||
|
sh 'java -jar target/*.jar'
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue