mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-20 14:55:50 +00:00
Added Jenkinsfile
This commit is contained in:
parent
448f168090
commit
20445233f6
1 changed files with 11 additions and 0 deletions
11
Jenkinsfile
vendored
Normal file
11
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
node('Open-JDK8-8') {
|
||||
stage('Versioncontrol') {
|
||||
git branch: 'REL_INT_1.0', url: 'https://github.com/thippareddy03/spring-petclinic.git'
|
||||
}
|
||||
stage('BuildPackage') {
|
||||
sh '/usr/share/maven/bin/mvn package'
|
||||
}
|
||||
stage('unittest') {
|
||||
junit '**/surefire-reports/*.xml'
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue