mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 07:45:49 +00:00
Update Jenkinsfile
This commit is contained in:
parent
9f6fb76114
commit
879b3fd204
1 changed files with 10 additions and 0 deletions
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
|
@ -14,5 +14,15 @@ pipeline {
|
||||||
sh "mvn clean install"
|
sh "mvn clean install"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
stage ('artifact') {
|
||||||
|
steps {
|
||||||
|
archiveArtifacts artifacts: '**/*.jar', followSymlinks: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage ('unit test') {
|
||||||
|
steps {
|
||||||
|
junit '**/TEST*.xml'
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue