File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
jacoco-maven-plugin/src/org/jacoco/maven
org.jacoco.doc/docroot/doc Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,10 @@ public class InstrumentMojo extends AbstractJacocoMojo {
55
55
56
56
/**
57
57
* A list of class files to exclude from instrumentation. May use wildcard
58
- * characters (* and ?). When not specified nothing will be excluded.
58
+ * characters (* and ?). When not specified nothing will be excluded. Except
59
+ * for performance optimization or technical corner cases this option is
60
+ * normally not required. If you want to exclude classes from the report
61
+ * please configure the <code>report</code> goal accordingly.
59
62
*/
60
63
@ Parameter
61
64
private List <String > excludes ;
Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ <h3>Why do I see classes in the coverage report although I excluded them in the
197
197
in the report are explicitly provided. Coverage is determined from the
198
198
provided execution data. If execution data is missing for a particular class,
199
199
this class is shown as not covered because the report generator cannot
200
- distinguish whether the class was excluded or not executed.
200
+ distinguish whether the class was excluded from instrumentation or not executed.
201
201
</ p >
202
202
203
203
< p >
You can’t perform that action at this time.
0 commit comments