Add the tools.

This commit is contained in:
Endolf 2018-05-23 01:16:53 +01:00
parent cc2c663916
commit 69d6b1b8a6

3
Jenkinsfile vendored
View file

@ -13,6 +13,7 @@ pipeline {
label "windows"
}
steps {
bat 'echo %JAVA_HOME%'
bat 'mvn -B -DskipTests clean package'
}
post {
@ -26,6 +27,7 @@ pipeline {
label "linux"
}
steps {
sh 'echo $JAVA_HOME'
sh 'mvn -B -DskipTests clean package'
}
post {
@ -39,6 +41,7 @@ pipeline {
label "osx"
}
steps {
sh 'echo $JAVA_HOME'
sh 'mvn -B -DskipTests clean package'
}
post {