Jenkin File

This commit is contained in:
Thilakraj Kannadajeddu Mahabala 2019-06-10 16:05:33 +05:30
parent 0a1686de67
commit 35c8e6241a

15
Jenkinsfile vendored Normal file
View 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'
}
}