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/maven.git
The following commit(s) were added to refs/heads/master by this push:
new 001310a disable publishers
001310a is described below
commit 001310a76b82fcc968cfc11d788af7f6c9539ba5
Author: Olivier Lamy <[email protected]>
AuthorDate: Mon Aug 17 20:10:12 2020 +1000
disable publishers
---
Jenkinsfile | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 04c0853..eae44cc 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -52,12 +52,12 @@ node(jenkinsEnv.nodeSelection(osNode)) {
withMaven(jdk: jdkName, maven: mvnName,
mavenLocalRepo:"${WORK_DIR}/.repository", options:[
artifactsPublisher(disabled: false),
junitPublisher(ignoreAttachments: false),
- findbugsPublisher(disabled: false),
- openTasksPublisher(disabled: false),
- dependenciesFingerprintPublisher(),
- invokerPublisher(),
- pipelineGraphPublisher()
- ]) {
+ findbugsPublisher(disabled: true),
+ openTasksPublisher(disabled: true),
+ dependenciesFingerprintPublisher(disabled: false),
+ invokerPublisher(disabled: true),
+ pipelineGraphPublisher(disabled: false)
+ ], publisherStrategy: 'EXPLICIT') {
// For now: maven-wrapper contains 2 poms sharing
the same outputDirectory, so separate clean
sh "mvn clean"
sh "mvn ${MAVEN_GOAL} -B -U -e -fae -V
-Dmaven.test.failure.ignore=true -P versionlessMavenDist"