Thank you the reply Marc.
So I got back into Jacoco this week and stumbled across some more roadblocks which I am sure are simple issues but are puzzling for a novice such as myself.
We are running Websphere 8, and I configured the JVM parameter as follows:
-javaagent:/export/home/nssadmd/JaCoCo/lib/jacocoagent.jar
I ran my tests (not unit tests but rather sending messages via a queue system). I stopped the JVM, and the .exec file was dumped as it should be. I understand we have to use Apache ant to create the report. So I created an ant report task:
<jacoco:report>
<executiondata>
<file file="jacoco.exec"/>
</executiondata>
<structure name="Jacoco">
<classfiles>
<fileset dir="customerjar"/>
</classfiles>
</structure>
<html destdir="report"/>
</jacoco:report>
Where customerjar is the folder containg the jars that contain the core code. The report does get generated, but the coverage remains at 0%. I do see red bars for the different packages in those jars. Am I missing anything in my steps?
Thanks again!