Tools :
Jacoco maven plugin
Issue :
I am working on a multi-module project. The project structure is described as below -
Module1
Module1Test
Module2
Module2Test
I am able to generate the jacoco report for the Test module . The jacoco report was not coming due to " Skipping JaCoCo execution due to missing classes directory" . But I managed to solve that error by following here . I copied source class files into target of test module.
Now report gets generated successfully. But I am yet not able to navigate to individual source files through report generated . The individual methods are not navigable to see which lines are covered and which are not.
Can anybody please advice what needs to be done to get navigation to source files enabled ? Do I need to copy source files also in Test Folder ?