Jacoco should only create XML reports once all tests of all modules ran. The last module might create coverage in previous modules.
The old binary format supported this very easy, by writing to the same single binary file using append=true. And sonar plugin would use this file. Now sonar made it fully deprecated and we need to use the XML file as of version 8. (LTS is still on 7.9 of sonar and works for a couple of months) Jacoco proposes to use an aggregate maven module to fix code coverage for multi module projects. This is too intrusive. Why would I want a seperate maven module to fix code coverage... A comment of @bmaehr on following issue gives the solution of such a goal: https://github.com/jacoco/jacoco/issues/974 Do you see other solutions? Do you think this is a good idea? -- You received this message because you are subscribed to the Google Groups "JaCoCo and EclEmma Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jacoco/11cad802-8d97-4e1f-b381-bfb6751a8fd3n%40googlegroups.com.
