aboutsummaryrefslogtreecommitdiff
path: root/jacoco-maven-plugin
diff options
context:
space:
mode:
authorEvgeny Mandrikov <138671+Godin@users.noreply.github.com>2019-10-02 15:10:50 +0200
committerMarc R. Hoffmann <hoffmann@mountainminds.com>2019-10-02 15:10:50 +0200
commite1a9d4bd401b4bf9e20d03f4611e70b46ce66cdf (patch)
tree5d21a883f823688527973a315b7583e168a1fb1e /jacoco-maven-plugin
parent71df2722ae79ba6358b874ca25113b585763cbe9 (diff)
downloadjacoco-e1a9d4bd401b4bf9e20d03f4611e70b46ce66cdf.tar.gz
Update documentation about "excludes" option of offline instrumentation (#951)
Diffstat (limited to 'jacoco-maven-plugin')
-rw-r--r--jacoco-maven-plugin/src/org/jacoco/maven/InstrumentMojo.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/jacoco-maven-plugin/src/org/jacoco/maven/InstrumentMojo.java b/jacoco-maven-plugin/src/org/jacoco/maven/InstrumentMojo.java
index e973c654..0eb8c362 100644
--- a/jacoco-maven-plugin/src/org/jacoco/maven/InstrumentMojo.java
+++ b/jacoco-maven-plugin/src/org/jacoco/maven/InstrumentMojo.java
@@ -55,7 +55,10 @@ public class InstrumentMojo extends AbstractJacocoMojo {
/**
* A list of class files to exclude from instrumentation. May use wildcard
- * characters (* and ?). When not specified nothing will be excluded.
+ * characters (* and ?). When not specified nothing will be excluded. Except
+ * for performance optimization or technical corner cases this option is
+ * normally not required. If you want to exclude classes from the report
+ * please configure the <code>report</code> goal accordingly.
*/
@Parameter
private List<String> excludes;