Skip to content

Commit

Permalink
Add Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
scaytrase committed May 1, 2017
1 parent 8cbfac9 commit ddafaea
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
node('maven') {
stage('Preparation') {
checkout scm
}
stage('Build') {
sh "mvn -Dmaven.test.failure.ignore clean package"
}
stage('Results') {
junit '**/target/surefire-reports/TEST-*.xml'
archive 'target/*.jar'
}
}

0 comments on commit ddafaea

Please sign in to comment.