This is an automated email from the ASF dual-hosted git repository.
olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/archiva-jenkins-lib.git
The following commit(s) were added to refs/heads/master by this push:
new a91c4e6 activate mavenLinkerPublisher
a91c4e6 is described below
commit a91c4e6fbe857ae181e3f0150f24f1322bf43229
Author: olivier lamy <[email protected]>
AuthorDate: Mon Dec 31 11:38:41 2018 +1000
activate mavenLinkerPublisher
Signed-off-by: olivier lamy <[email protected]>
---
vars/asfStandardBuild.groovy | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/vars/asfStandardBuild.groovy b/vars/asfStandardBuild.groovy
index d72df5d..a64faa8 100644
--- a/vars/asfStandardBuild.groovy
+++ b/vars/asfStandardBuild.groovy
@@ -37,7 +37,7 @@ def call(Map params = [:]) {
def defaultPublishers = [artifactsPublisher(disabled: false),
junitPublisher(ignoreAttachments: false, disabled: false),
findbugsPublisher(disabled: true),
openTasksPublisher(disabled: true),
dependenciesFingerprintPublisher(disabled: false),
invokerPublisher(disabled: true),
- pipelineGraphPublisher(disabled: false)]
+ pipelineGraphPublisher(disabled: false),
mavenLinkerPublisher(disabled: false)]
def publishers = params.containsKey('publishers') ? params.publishers :
defaultPublishers
@@ -98,8 +98,8 @@ def mavenBuild(jdk, cmdline, mvnName, publishers) {
withMaven(
maven: mvnName,
jdk: "$jdk",
- //options: publishers,
- //publisherStrategy: 'EXPLICIT',
+ options: publishers,
+ publisherStrategy: 'EXPLICIT',
//globalMavenSettingsConfig: settingsName,
mavenOpts: mavenOpts,
mavenLocalRepo: localRepo) {