You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by re...@apache.org on 2022/06/08 14:18:36 UTC

[uima-build-jenkins-shared-library] branch main updated: [UIMA-6471] Enable task scanner and spotbugs on Jenkins pipeline

This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/uima-build-jenkins-shared-library.git


The following commit(s) were added to refs/heads/main by this push:
     new b8ea5e7  [UIMA-6471] Enable task scanner and spotbugs on Jenkins pipeline
b8ea5e7 is described below

commit b8ea5e70419592336bf4442fb302516291a0b9ae
Author: Richard Eckart de Castilho <re...@apache.org>
AuthorDate: Wed Jun 8 16:18:30 2022 +0200

    [UIMA-6471] Enable task scanner and spotbugs on Jenkins pipeline
---
 vars/defaultPipeline.groovy | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/vars/defaultPipeline.groovy b/vars/defaultPipeline.groovy
index 10a584a..a423b55 100644
--- a/vars/defaultPipeline.groovy
+++ b/vars/defaultPipeline.groovy
@@ -184,7 +184,9 @@ def call(body) {
                     def mavenConsoleIssues = scanForIssues tool: mavenConsole()
                     def javaIssues = scanForIssues tool: java()
                     def javaDocIssues = scanForIssues tool: javaDoc()
-                    publishIssues id: "analysis-${PLATFORM}", issues: [mavenConsoleIssues, javaIssues, javaDocIssues]
+                    def spotBugsIssues = scanForIssues tool: spotBugs()
+                    def taskScannerIssues = scanForIssues tool: taskScanner()
+                    publishIssues id: "analysis-${PLATFORM}", issues: [mavenConsoleIssues, javaIssues, javaDocIssues, spotBugsIssues, taskScannerIssues]
                   }
                 }
               }