| Update to my previous comment: The workaround for recent pipeline-maven versions is actually easier than I first thought: Just don't rely on withMaven() to create your aggregated report, just add an explicit jacoco() invokation instead! This will automatically "merge" all the exec files to create one big report for everything. If you want to explicitly disable the jacoco report publishing via withMaven() (which doesn't work anyway for multiple modules) you have two options:
- withMaven(publisherStrategy: 'EXPLICIT', options: [...]) (don't add jacocoPublisher() to options)
- withMaven(options: [jacocoPublisher(disabled: true)],...)
|