mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 15:25:49 +00:00
Added Jenkinsfile
This commit is contained in:
parent
fd1618b125
commit
a9a14b2781
1 changed files with 13 additions and 11 deletions
24
Jenkinsfile
vendored
24
Jenkinsfile
vendored
|
@ -1,15 +1,17 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent {
|
agent {
|
||||||
docker {
|
docker {
|
||||||
image 'maven:alpine'
|
image 'maven:alpine'
|
||||||
args '-v /root/.m2:/root/.m2'
|
args '-v /root/.m2:/root/.m2'
|
||||||
}
|
|
||||||
}
|
}
|
||||||
stages {
|
|
||||||
stage('Build') {
|
}
|
||||||
steps {
|
stages {
|
||||||
sh 'mvn clean install -Dlicense.skip=true'
|
stage('Build') {
|
||||||
}
|
steps {
|
||||||
}
|
sh 'mvn clean install -Dlicense.skip=true'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue