mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-25 09:05:50 +00:00
Create Jenkinsfile4
This commit is contained in:
parent
6e71aaa44c
commit
4ccb723599
1 changed files with 15 additions and 0 deletions
15
Jenkinsfile4
Normal file
15
Jenkinsfile4
Normal file
|
@ -0,0 +1,15 @@
|
|||
pipeline {
|
||||
agent none
|
||||
stages {
|
||||
stage('Maven Install') {
|
||||
agent {
|
||||
docker {
|
||||
image 'maven:3.5.0'
|
||||
}
|
||||
}
|
||||
steps {
|
||||
sh 'mvn clean install'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue