Hi all,
I am having problem to get includes working in my jacoco pom.xml. I searched around and found this issue:
https://github.com/jacoco/jacoco/issues/34 . It said includes should have syntax as Java Name.
So I will expect this will work:
<includes>
<include>com.**</include>
</includes>
But it doesn't work.
It only works if if I put the whole thing is *:
<includes>
<include>*</include>
</includes>
Can someone give me an example to use includes to include all the class under a package. Thanks for your help.
Leo