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/10/07 15:51:05 UTC

[jackrabbit-filevault-jenkins-lib] branch master updated: don't attach publishers to Maven Sonar execution

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 514bb46  don't attach publishers to Maven Sonar execution
514bb46 is described below

commit 514bb46c7ca93e87f87268fabbe3ea1d61d7dc45
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Thu Oct 7 17:50:17 2021 +0200

    don't attach publishers to Maven Sonar execution
---
 vars/fileVaultMavenStdBuild.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vars/fileVaultMavenStdBuild.groovy b/vars/fileVaultMavenStdBuild.groovy
index b4a686e..3123393 100644
--- a/vars/fileVaultMavenStdBuild.groovy
+++ b/vars/fileVaultMavenStdBuild.groovy
@@ -71,7 +71,7 @@ def buildStage(final int jdkVersion, final String nodeLabel, final boolean isMai
                     timeout(60) {
                         withCredentials([string(credentialsId: 'sonarcloud-filevault-token', variable: 'SONAR_TOKEN')]) {
                             String mavenArguments = "${sonarPluginGav}:sonar -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=apache -Dsonar.projectKey=${sonarProjectKey}"
-                            executeMaven(jdkLabel, mavenArguments, 'IMPLICIT')
+                            executeMaven(jdkLabel, mavenArguments, 'EXPLICIT')
                         }
                     }
                 }
@@ -81,7 +81,7 @@ def buildStage(final int jdkVersion, final String nodeLabel, final boolean isMai
             stage("Deployment") {
                 node('nexus-deploy') {
                     timeout(60) {
-                        // nexus deployment needs pom.xmlß
+                        // nexus deployment needs pom.xml
                         checkout scm
                         // Unstash the previously stashed build results.
                         unstash name: 'filevault-build-snapshots'