This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch feature/SLING-7245 in repository https://gitbox.apache.org/repos/asf/sling-tooling-jenkins.git
commit bb1644c0fca224653c5bd2b0cf451cd947ff0605 Author: Robert Munteanu <[email protected]> AuthorDate: Tue Dec 18 00:06:06 2018 +0100 SLING-7245 - Validate pull requests using Jenkins Fix passing of additional maven params. --- vars/slingOsgiBundleBuild.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vars/slingOsgiBundleBuild.groovy b/vars/slingOsgiBundleBuild.groovy index f043833..bb53ca6 100644 --- a/vars/slingOsgiBundleBuild.groovy +++ b/vars/slingOsgiBundleBuild.groovy @@ -46,7 +46,7 @@ def call(Map params = [:]) { throw new RuntimeException("Unknown JDK version ${jdkVersion}") withMaven(maven: mvnVersion, jdk: jenkinsJdkLabel ) { dir(moduleDir) { - sh "mvn clean ${goal} ${additionalMavenParams}" + sh "mvn clean ${goal} ${buildDesc.additionalMavenParams}" } } }
