Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 1.0.9
-
Fix Version/s: None
-
Labels:None
-
Number of attachments :
Description
Setting the instrumentation excludes causes jcoverage to fail with classes not found exceptions.
To correct, change the following in plugin.jelly from
<ant:copy todir="$
{maven.jcoverage.instrumentation}"><ant:fileset dir="${maven.build.dest}">
<ant:exclude name="*/.class" />
<ant:exclude name="${maven.jcoverage.instrumentation.excludes}" />
</ant:fileset>
</ant:copy>
to
<ant:copy todir="${maven.jcoverage.instrumentation}
">
<ant:fileset dir="$
">
<ant:exclude name="*/.class" />
<ant:include name="$
" />
</ant:fileset>
</ant:copy>
My suggested correction appears to be premature and does not work.