Fixes Jenkinsfile

Updates Jenkinsfile to trigger SCM checkout and Maven build
This commit is contained in:
Patrick Gotthard 2016-04-26 21:02:22 +02:00
parent eb2f5f1258
commit f07562f94d

9
Jenkinsfile vendored
View file

@ -1 +1,10 @@
node {
stage 'Checkout'
checkout scm
stage 'Build'
def mvnHome = tool 'Maven 3.3.9'
sh "${mvnHome}/bin/mvn clean install"
}