Added jenkinsfile

This commit is contained in:
venkat 2019-02-10 15:01:20 +05:30
parent 8db5fd2e3c
commit 7655c74972

View file

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