mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 06:45:49 +00:00
Jenkin File
This commit is contained in:
parent
0a1686de67
commit
35c8e6241a
1 changed files with 15 additions and 0 deletions
15
Jenkinsfile
vendored
Normal file
15
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
node {
|
||||
|
||||
stage('Checkout') {
|
||||
git 'https://github.com/ThilakrajKM/spring-petclinic'
|
||||
}
|
||||
|
||||
stage('Build') {
|
||||
sh 'mvn clean package'
|
||||
}
|
||||
|
||||
stage('Archive') {
|
||||
junit allowEmptyResults: true, testResults: '**/target/**/TEST*.xml'
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue