aboutsummaryrefslogtreecommitdiff
path: root/jacoco-maven-plugin/src/org/jacoco/maven/AbstractAgentMojo.java
diff options
context:
space:
mode:
authorEvgeny Mandrikov <mandrikov@gmail.com>2014-05-11 20:02:24 +0200
committerEvgeny Mandrikov <mandrikov@gmail.com>2014-05-11 20:03:19 +0200
commit2ac5b7b2e0496beb0af376de182c7e8eed473a00 (patch)
tree53db83f85458e2a2d6b41018775a5f9605d99aab /jacoco-maven-plugin/src/org/jacoco/maven/AbstractAgentMojo.java
parent55c11f40e617a2387ae51a9a85504856a995142e (diff)
downloadjacoco-2ac5b7b2e0496beb0af376de182c7e8eed473a00.tar.gz
Use maven-plugin-plugin version 3.3
This closes #83
Diffstat (limited to 'jacoco-maven-plugin/src/org/jacoco/maven/AbstractAgentMojo.java')
-rw-r--r--jacoco-maven-plugin/src/org/jacoco/maven/AbstractAgentMojo.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/jacoco-maven-plugin/src/org/jacoco/maven/AbstractAgentMojo.java b/jacoco-maven-plugin/src/org/jacoco/maven/AbstractAgentMojo.java
index 334ba1cc..4ed00c54 100644
--- a/jacoco-maven-plugin/src/org/jacoco/maven/AbstractAgentMojo.java
+++ b/jacoco-maven-plugin/src/org/jacoco/maven/AbstractAgentMojo.java
@@ -40,7 +40,7 @@ public abstract class AbstractAgentMojo extends AbstractJacocoMojo {
/**
* Map of plugin artifacts.
*
- * @parameter expression="${plugin.artifactMap}"
+ * @parameter property="plugin.artifactMap"
* @required
* @readonly
*/
@@ -50,7 +50,7 @@ public abstract class AbstractAgentMojo extends AbstractJacocoMojo {
* If not specified, then "argLine" would be used for "jar" packaging and
* "tycho.testArgLine" for "eclipse-test-plugin".
*
- * @parameter expression="${jacoco.propertyName}"
+ * @parameter property="jacoco.propertyName"
*/
String propertyName;
/**
@@ -58,7 +58,7 @@ public abstract class AbstractAgentMojo extends AbstractJacocoMojo {
* is appended to the existing file. If set to false, an existing execution
* data file will be replaced.
*
- * @parameter expression="${jacoco.append}"
+ * @parameter property="jacoco.append"
*/
Boolean append;
/**
@@ -69,20 +69,20 @@ public abstract class AbstractAgentMojo extends AbstractJacocoMojo {
* particular class loaders that do not have access to the Java runtime
* classes.
*
- * @parameter expression="${jacoco.exclClassLoaders}"
+ * @parameter property="jacoco.exclClassLoaders"
*/
String exclClassLoaders;
/**
* A session identifier that is written with the execution data. Without
* this parameter a random identifier is created by the agent.
*
- * @parameter expression="${jacoco.sessionId}"
+ * @parameter property="jacoco.sessionId"
*/
String sessionId;
/**
* If set to true coverage data will be written on VM shutdown.
*
- * @parameter expression="${jacoco.dumpOnExit}"
+ * @parameter property="jacoco.dumpOnExit"
*/
Boolean dumpOnExit;
/**
@@ -98,7 +98,7 @@ public abstract class AbstractAgentMojo extends AbstractJacocoMojo {
* <li>none: Do not produce any output.</li>
* </ul>
*
- * @parameter expression="${jacoco.output}"
+ * @parameter property="jacoco.output"
*/
String output;
/**
@@ -106,7 +106,7 @@ public abstract class AbstractAgentMojo extends AbstractJacocoMojo {
* connect to when the output method is tcpclient. In tcpserver mode the
* value "*" causes the agent to accept connections on any local address.
*
- * @parameter expression="${jacoco.address}"
+ * @parameter property="jacoco.address"
*/
String address;
/**
@@ -115,7 +115,7 @@ public abstract class AbstractAgentMojo extends AbstractJacocoMojo {
* available, which means that if multiple JaCoCo agents should run on the
* same machine, different ports have to be specified.
*
- * @parameter expression="${jacoco.port}"
+ * @parameter property="jacoco.port"
*/
Integer port;
/**
@@ -124,13 +124,13 @@ public abstract class AbstractAgentMojo extends AbstractJacocoMojo {
* debugging purposes or in case of dynamically created classes for example
* when scripting engines are used.
*
- * @parameter expression="${jacoco.classDumpDir}"
+ * @parameter property="jacoco.classDumpDir"
*/
File classDumpDir;
/**
* If set to true the agent exposes functionality via JMX.
*
- * @parameter expression="${jacoco.jmx}"
+ * @parameter property="jacoco.jmx"
*/
Boolean jmx;