From b945c88cbfdf5b5bfa6294c769c4750fdafca146 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Kubitz?= Date: Thu, 25 Jan 2024 12:12:40 +0100 Subject: [PATCH] Jenkinsfile: disable javadoc, maven issues - publishAllIssues: false - to disable unrelated warnings in PRs - maven: wrongly collects "API WARNING"s without resolving filename - javadoc: it is currently not used * eclipse: ecj info markers work fine with parsing xml files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3960d4c2e79..c5e5fa7dd50 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,7 +30,7 @@ pipeline { archiveArtifacts artifacts: '*.log,*/target/work/data/.metadata/*.log,*/tests/target/work/data/.metadata/*.log,apiAnalyzer-workspace/.metadata/*.log', allowEmptyArchive: true junit '**/target/surefire-reports/TEST-*.xml' discoverGitReferenceBuild referenceJob: 'eclipse.platform.ui/master' - recordIssues publishAllIssues: true, tools: [eclipse(pattern: '**/target/compilelogs/*.xml'), mavenConsole(), javaDoc()] + recordIssues publishAllIssues:false, tool: eclipse(pattern: '**/target/compilelogs/*.xml'), qualityGates: [[threshold: 1, type: 'DELTA', unstable: true]] } } }