org.jacoco.maven
Class AgentMojo
java.lang.Object
org.apache.maven.plugin.AbstractMojo
org.jacoco.maven.AbstractJacocoMojo
org.jacoco.maven.AbstractAgentMojo
org.jacoco.maven.AgentMojo
- All Implemented Interfaces:
- org.apache.maven.plugin.ContextEnabled, org.apache.maven.plugin.Mojo
public class AgentMojo
- extends AbstractAgentMojo
Prepares a property pointing to the JaCoCo runtime agent that can be passed
as a VM argument to the application under test. Depending on the project
packaging type by default a property with the following name is set:
- tycho.testArgLine for packaging type eclipse-test-plugin and
- argLine otherwise.
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:
<properties>
<argLine>-your -extra -arguments</argLine>
</properties>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!-- Do not define argLine here! -->
</configuration>
</plugin>
Resulting coverage information is collected during execution and by default
written to a file when the process terminates.
- Since:
- 0.5.3
- Is defined by the goal name:
- prepare-agent
- Is bound to the specified phase of the standard build lifecycle:
- initialize
- Requires the dependencies in this specified scope:
- runtime
- Requires a Maven project to run:
- true
- Mojo is thread safe:
- true
| Fields inherited from interface org.apache.maven.plugin.Mojo |
ROLE |
| Methods inherited from class org.apache.maven.plugin.AbstractMojo |
getLog, getPluginContext, setLog, setPluginContext |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AgentMojo
public AgentMojo()
Copyright © 2009-2016 Mountainminds GmbH & Co. KG. All Rights Reserved.