Browse Source

Deactivating regular publishers of maven step

pull/46/head
Martin Stockhammer 6 years ago
parent
commit
65459c09ba
1 changed files with 4 additions and 2 deletions
  1. 4
    2
      Jenkinsfile

+ 4
- 2
Jenkinsfile View File

@@ -30,7 +30,8 @@ pipeline {
timeout(120) {
withMaven(maven: buildMvn, jdk: buildJdk,
mavenSettingsConfig: deploySettings,
mavenLocalRepo: ".repository"
mavenLocalRepo: ".repository",
options: [artifactsPublisher(disabled: true), junitPublisher(disabled: true, ignoreAttachments: false)]
)
{
sh "chmod 755 ./src/ci/scripts/prepareWorkspace.sh"
@@ -67,7 +68,8 @@ pipeline {
timeout(120) {
withMaven(maven: buildMvn, jdk: buildJdk,
mavenSettingsConfig: deploySettings,
mavenLocalRepo: ".repository"
mavenLocalRepo: ".repository",
options: [artifactsPublisher(disabled: true), junitPublisher(disabled: true, ignoreAttachments: false)]
)
{
sh "mvn deploy -B -Dmaven.test.skip=true"

Loading…
Cancel
Save