Drop a new Jenkinsfile in here

This commit is contained in:
R. Tyler Croy 2016-09-16 18:28:03 -07:00 committed by GitHub
parent 2f2865cffd
commit 993d679331
1 changed files with 11 additions and 0 deletions

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env groovy
node('windows') {
withEnv([
"JAVA_HOME=${tool 'jdk7'}",
"PATH+MAVEN=${tool 'mvn'}/bin",
]){
bat 'mvn clean install -Dmaven.test.failure.ignore=true'
}
junit '**/target/surefire-reports/**/*.xml'
}