From a3e1dfc4272e16e512dca3e0be730835668a4e9d Mon Sep 17 00:00:00 2001 From: Hannes Wellmann Date: Mon, 18 Dec 2023 23:32:08 +0100 Subject: [PATCH] Revert "Jenkinsfile: Disable Quality gate for maven warnings #969" This reverts commit 5a4d891f0e1f445cbdf30a01f25f5ac909f393c4. --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8b3790b106e..049db44919b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,8 +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/master' - recordIssues tools: [eclipse(), javaDoc()], qualityGates: [[threshold: 1, type: 'DELTA', unstable: true]] - recordIssues tool: mavenConsole(), qualityGates: [[threshold: 1, type: 'DELTA_ERROR', unstable: true]] + recordIssues tools: [eclipse(), mavenConsole(), javaDoc()], qualityGates: [[threshold: 1, type: 'DELTA', unstable: true]] } } }