mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-23 16:25:49 +00:00
Update Jenkinsfile
This commit is contained in:
parent
7112183a14
commit
d91d971efa
1 changed files with 8 additions and 2 deletions
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
|
@ -1,8 +1,14 @@
|
|||
#!groovy
|
||||
|
||||
pipeline {
|
||||
agent none stages {
|
||||
stage('Maven Install') {
|
||||
agent any
|
||||
steps {
|
||||
agent {
|
||||
docker {
|
||||
image 'maven:3.5.0'
|
||||
}
|
||||
}
|
||||
steps {
|
||||
sh 'mvn clean install'
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue