From 8fb4c0b29c4f6450cff61c6dcf65a9eaea2b9754 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20L=C3=A4ubrich?= Date: Thu, 18 Jan 2024 07:53:02 +0100 Subject: [PATCH] Use the ECJ generated compiler logs to parse compiler problems --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 125ebe0..f9217bc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,7 +25,7 @@ pipeline { post { always { archiveArtifacts artifacts: '*.log,*/target/work/data/.metadata/*.log,*/tests/target/work/data/.metadata/*.log,apiAnalyzer-workspace/.metadata/*.log', allowEmptyArchive: true - publishIssues issues:[scanForIssues(tool: java()), scanForIssues(tool: mavenConsole())] + publishIssues issues:[scanForIssues(tool: eclipse(pattern: '**/target/compilelogs/*.xml')), scanForIssues(tool: mavenConsole())] } } }