aboutsummaryrefslogtreecommitdiff
path: root/jacoco-maven-plugin
diff options
context:
space:
mode:
authorMarc R. Hoffmann <hoffmann@mountainminds.com>2015-05-11 21:38:59 +0200
committerMarc R. Hoffmann <hoffmann@mountainminds.com>2015-06-03 22:28:44 +0200
commit6b34aac479630c7dce8cf9a2297083cde5d7b1e0 (patch)
treeb2a22403ff81bebdee5e99ceb12e9df973ddfeb2 /jacoco-maven-plugin
parent73e36a107c1e9c8480e117ea769be34b8be957dd (diff)
downloadjacoco-6b34aac479630c7dce8cf9a2297083cde5d7b1e0.tar.gz
GitHub #270: Clarify declaration of properties.
Diffstat (limited to 'jacoco-maven-plugin')
-rw-r--r--jacoco-maven-plugin/src/org/jacoco/maven/AgentMojo.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/jacoco-maven-plugin/src/org/jacoco/maven/AgentMojo.java b/jacoco-maven-plugin/src/org/jacoco/maven/AgentMojo.java
index 1ff9f248..faecb60a 100644
--- a/jacoco-maven-plugin/src/org/jacoco/maven/AgentMojo.java
+++ b/jacoco-maven-plugin/src/org/jacoco/maven/AgentMojo.java
@@ -26,9 +26,9 @@ import java.io.File;
* </ul>
*
* <p>
- * If your project already uses the argLine to configure the
- * surefire-maven-plugin, be sure that argLine defined as a property, rather
- * than as part of the plugin configuration. For example:
+ * If your project already defines VM arguments for test execution, be sure that
+ * the VM arguments are defined as a property, rather than as part of the plugin
+ * configuration. For example in case of maven-surefire-plugin:
* </p>
*
* <pre>
@@ -45,7 +45,6 @@ import java.io.File;
* &lt;/plugin&gt;
* </pre>
*
- *
* <p>
* Resulting coverage information is collected during execution and by default
* written to a file when the process terminates.