Create Jenkinsfile

This commit is contained in:
Colin McDonald 2016-05-21 15:30:58 -04:00
parent cb95f19eaa
commit 4bf36447b2
1 changed files with 8 additions and 0 deletions

8
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,8 @@
node {
stage 'Git Clone'
checkout scm
stage 'Maven Compile'
sh 'mvn clean deploy -U'
stage 'Jenkins Archive'
step([$class: 'ArtifactArchiver', artifacts: 'target/*.jar', fingerprint: true])
}