mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 23:05:50 +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 {
|
||||
agent {
|
||||
docker {
|
||||
image 'maven:alpine'
|
||||
args '-v /root/.m2:/root/.m2'
|
||||
}
|
||||
agent {
|
||||
docker {
|
||||
image 'maven:alpine'
|
||||
args '-v /root/.m2:/root/.m2'
|
||||
}
|
||||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh 'mvn clean install -Dlicense.skip=true'
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh 'mvn clean install -Dlicense.skip=true'
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue