Skip to content
Advertisement

Gradle jacoco coverage report with more than one submodule(s)?

Does anybody know how to configure a gradle file for java jacoco report that contain codecoverage of more than one gradle submodule?

my current approach only shows codecoverage of the current submodule but not codecoverage of a sibling-submodul.

I have this project structure

JavaScript

when i execute gradlew :extlib:check :extlib:jacocoTestReport the junit-test “Integrationtest.java” is executed and a codecoverage report is generated that does not contain codecoverage for corelib classes like Core.java

The result should include the codecoverage of Ext.java and Core.java

I already read

but found no clues

here is content of the gradle files

JavaScript

JavaScript

JavaScript

[Update 2016-08-01]

thanks to @Benjamin Muschko i also tried in the root gradle file

JavaScript

but got error message (with gradle-2.14)

JavaScript

there is also the gradle plugin https://github.com/paveldudka/JacocoEverywhere where i have asked for mulit-submodule support https://github.com/paveldudka/JacocoEverywhere/issues/16

[update 2016-08-01] i found a working solution based on https://github.com/palantir/gradle-jacoco-coverage

See my own answer below

Advertisement

Answer

Finally I found this plugin: https://github.com/palantir/gradle-jacoco-coverage that did the job for me:

root gradle.build

JavaScript

all subprojects that has

JavaScript

are included in the report.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement