I have a maven test project which tests our dev code. These 2 are different maven projects. Test project access dev project via maven dependency. I want to measure integration test code coverage against dev project using jacoco and maven plugin. Previously I have done it using jacoco and sonar where test code generates jacoco.exec file and then I manually built dev project passing jacoc.exec as arg in jenkins and get code coverage report. I was not basically looking for 100% automated way of doing this. Have read couple of articles which uses jacoco with maven but all those uses single project.
Appreciate any help/pointer.
Thanks