You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by kw...@apache.org on 2021/12/01 17:16:55 UTC

[jackrabbit-filevault-jenkins-lib] branch master updated: Correctly pass on publisherStrategy

This is an automated email from the ASF dual-hosted git repository.

kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jackrabbit-filevault-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
     new a32132a  Correctly pass on publisherStrategy
a32132a is described below

commit a32132a5746e569f14fa461308f6210a49d4380d
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Wed Dec 1 18:11:42 2021 +0100

    Correctly pass on publisherStrategy
---
 vars/fileVaultMavenStdBuild.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vars/fileVaultMavenStdBuild.groovy b/vars/fileVaultMavenStdBuild.groovy
index 3123393..30a2961 100644
--- a/vars/fileVaultMavenStdBuild.groovy
+++ b/vars/fileVaultMavenStdBuild.groovy
@@ -26,7 +26,7 @@ def executeMaven(String jdkLabel, String mavenArguments, String publisherStrateg
         maven: 'maven_3_latest',
         jdk: jdkLabel,
         mavenLocalRepo: '.repository',
-        publisherStrategy: 'IMPLICIT') {
+        publisherStrategy: publisherStrategy) {
         if (isUnix()) {
             sh "mvn -B ${mavenArguments}"
         } else {
@@ -113,4 +113,4 @@ def call(List<Integer> jdkVersions, int mainJdkVersion, List<String> nodeLabels,
         buildDiscarder(logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', daysToKeepStr: '', numToKeepStr: '10'))
     ])
     parallel stagesFor(jdkVersions, mainJdkVersion, nodeLabels, mainNodeLabel, sonarProjectKey)
-}
\ No newline at end of file
+}