From: David ‘Bombe’ Roden Date: Wed, 2 Oct 2024 21:07:18 +0000 (+0200) Subject: 💚 Remove coverage recording with JaCoCo plugin X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=refs%2Fheads%2Fnext;p=Sone.git 💚 Remove coverage recording with JaCoCo plugin The normal Coverage plugin does the job well enough. --- diff --git a/Jenkinsfile b/Jenkinsfile index 8dbd760..f4ed219 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -24,7 +24,6 @@ pipeline { post { always { junit 'build/test-results/*/*.xml' - jacoco classPattern: 'build/classes/*/main', sourcePattern: '**/src/main/' recordCoverage(tools: [[parser: 'JACOCO', pattern: '**/jacocoTestReport.xml']]) } }