Ahmed Hamouda
10/05/2024, 12:16 PMjacoco/test.exec files of all other sub-modules. I have this in my dependencies
dependencies {
jacocoAggregation(project(":abc"))
jacocoAggregation(project(":cde"))
..
}
My question is regarding the output of the report. Is there a way to get the report divided by sub-module name.
What I get now is list of package names:
com.example.abc.server
com.example.abc.model
com.example.cde.server
com.example.cde.model
But what I want is subproject names first and then the packages inside each.
abc
cde
Can this be achieved in Gradle?Vampire
10/05/2024, 6:27 PM