💚 Remove coverage recording with JaCoCo plugin next
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Wed, 2 Oct 2024 21:07:18 +0000 (23:07 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 3 Oct 2024 14:42:37 +0000 (16:42 +0200)
The normal Coverage plugin does the job well enough.

Jenkinsfile

index 8dbd760..f4ed219 100644 (file)
@@ -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']])
                 }
             }