mirror of https://github.com/apache/maven.git
disable publishers
This commit is contained in:
parent
9120d86573
commit
001310a76b
|
@ -52,12 +52,12 @@ node(jenkinsEnv.nodeSelection(osNode)) {
|
||||||
withMaven(jdk: jdkName, maven: mvnName, mavenLocalRepo:"${WORK_DIR}/.repository", options:[
|
withMaven(jdk: jdkName, maven: mvnName, mavenLocalRepo:"${WORK_DIR}/.repository", options:[
|
||||||
artifactsPublisher(disabled: false),
|
artifactsPublisher(disabled: false),
|
||||||
junitPublisher(ignoreAttachments: false),
|
junitPublisher(ignoreAttachments: false),
|
||||||
findbugsPublisher(disabled: false),
|
findbugsPublisher(disabled: true),
|
||||||
openTasksPublisher(disabled: false),
|
openTasksPublisher(disabled: true),
|
||||||
dependenciesFingerprintPublisher(),
|
dependenciesFingerprintPublisher(disabled: false),
|
||||||
invokerPublisher(),
|
invokerPublisher(disabled: true),
|
||||||
pipelineGraphPublisher()
|
pipelineGraphPublisher(disabled: false)
|
||||||
]) {
|
], publisherStrategy: 'EXPLICIT') {
|
||||||
// For now: maven-wrapper contains 2 poms sharing the same outputDirectory, so separate clean
|
// For now: maven-wrapper contains 2 poms sharing the same outputDirectory, so separate clean
|
||||||
sh "mvn clean"
|
sh "mvn clean"
|
||||||
sh "mvn ${MAVEN_GOAL} -B -U -e -fae -V -Dmaven.test.failure.ignore=true -P versionlessMavenDist"
|
sh "mvn ${MAVEN_GOAL} -B -U -e -fae -V -Dmaven.test.failure.ignore=true -P versionlessMavenDist"
|
||||||
|
|
Loading…
Reference in New Issue