New Jenkinsfile added

This commit is contained in:
venkat 2019-02-10 15:50:02 +05:30
parent 53ee92cb67
commit bb442ad5c1

15
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,15 @@
node {
stage('SCM'){
git 'https://github.com/pusa9/spring-petclinic.git'
}
stage ('build the packages'){
sh 'mvn package'
}
stage ('archival'){
archive 'target/*.jar'
}
}