blob: bf1544946229d45f780bdf246357c6e907fbcd8b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
def call(String args) {
if (isUnix()) {
configFileProvider([configFile(fileId: 'ubuntu', variable: 'TOOLCHAINS')]) {
withEnv([
'JAVA_HOME=/home/jenkins/tools/java/latest1.8',
'PATH+MAVEN=/home/jenkins/tools/maven/latest3/bin:/home/jenkins/tools/java/latest1.8/bin'
]) {
// note that the jenkins system property is set here to activate certain pom properties in
// some log4j modules that compile against system jars (e.g., log4j-jmx-gui)
sh "mvn --toolchains \"\$TOOLCHAINS\" -Djenkins ${args}"
}
}
} else {
configFileProvider([configFile(fileId: 'windows', variable: 'TOOLCHAINS')]) {
withEnv([
'JAVA_HOME=f:\\jenkins\\tools\\java\\latest1.8',
'PATH+MAVEN=f:\\jenkins\\tools\\maven\\latest3\\bin;f:\\jenkins\\tools\\java\\latest1.8\\bin'
]) {
bat "mvn --toolchains \"%TOOLCHAINS%\" ${args}"
}
}
}
}