mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-24 00:35: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 {
|
pipeline {
|
||||||
agent none stages {
|
agent none stages {
|
||||||
stage('Maven Install') {
|
stage('Maven Install') {
|
||||||
agent any
|
agent {
|
||||||
steps {
|
docker {
|
||||||
|
image 'maven:3.5.0'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
steps {
|
||||||
sh 'mvn clean install'
|
sh 'mvn clean install'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue