Attempting to fix jetty-9.2.x build

This commit is contained in:
Joakim Erdfelt 2018-08-14 15:37:39 -05:00
parent 589f4c04a4
commit 6ec3321c16
1 changed files with 52 additions and 51 deletions

5
Jenkinsfile vendored
View File

@ -1,9 +1,10 @@
#!groovy
node {
node("linux") {
// System Dependent Locations
def jdk = 'jdk7'
def mvntool = tool name: 'maven3.5', type: 'hudson.tasks.Maven$MavenInstallation'
def jdktool = tool name: 'jdk7', type: 'hudson.model.JDK'
def jdktool = tool name: $jdk, type: 'hudson.model.JDK'
def mvnName = 'maven3.5'
def localRepo = "${env.JENKINS_HOME}/${env.EXECUTOR_NUMBER}" // ".repository" //
def settingsName = 'oss-settings.xml'