I have a folder with multiple JAR files files called /lib from the root folder of "lib" I wanted to create a batch script, which executes a main file in "A.jar", but also collects information about the coverage of "B.jar" (A.jar has dependecies in B.jar)
A simplified version of the script I am executing is: java.exe -ea -Xmx2g -javaagent:jacocoagent.jar=destfile=./coverage.exec -cp "lib/*" at.my.Main Param1 Param2 Result: I get code coverage results for all classes in "A.jar", but none for "B.jar". Do you have an idea how to get results as well from "B.jar"? Thanks for your time! Florian -- 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/3baeb0a3-f40d-46b2-aaee-d637f9af66fd%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
