aboutsummaryrefslogtreecommitdiff
path: root/jacoco-maven-plugin
diff options
context:
space:
mode:
authorMarc R. Hoffmann <hoffmann@mountainminds.com>2014-05-20 13:44:17 +0200
committerMarc R. Hoffmann <hoffmann@mountainminds.com>2014-05-20 13:44:17 +0200
commit1d8389bf86f8a49d31bb5182b3ec1592e2f7289a (patch)
tree2cd5392b8cbc202450fc85533f9bc21d2ba6d441 /jacoco-maven-plugin
parent310b7d14546c8f5e49f5e99475fb6001331ac4ca (diff)
downloadjacoco-1d8389bf86f8a49d31bb5182b3ec1592e2f7289a.tar.gz
GitHub #49: New agent option inclbootstrapclasses
Consistent and shorter naming.
Diffstat (limited to 'jacoco-maven-plugin')
-rw-r--r--jacoco-maven-plugin/src/org/jacoco/maven/AbstractAgentMojo.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/jacoco-maven-plugin/src/org/jacoco/maven/AbstractAgentMojo.java b/jacoco-maven-plugin/src/org/jacoco/maven/AbstractAgentMojo.java
index ee38381f..698acdae 100644
--- a/jacoco-maven-plugin/src/org/jacoco/maven/AbstractAgentMojo.java
+++ b/jacoco-maven-plugin/src/org/jacoco/maven/AbstractAgentMojo.java
@@ -77,9 +77,9 @@ public abstract class AbstractAgentMojo extends AbstractJacocoMojo {
* instrumented. Use this feature with caution, it needs heavy
* includes/excludes tuning.
*
- * @parameter property="jacoco.includebootstrapclasses"
+ * @parameter property="jacoco.inclBootstrapClasses"
*/
- Boolean includebootstrapclasses;
+ Boolean inclBootstrapClasses;
/**
* A session identifier that is written with the execution data. Without
* this parameter a random identifier is created by the agent.
@@ -186,8 +186,8 @@ public abstract class AbstractAgentMojo extends AbstractJacocoMojo {
if (exclClassLoaders != null) {
agentOptions.setExclClassloader(exclClassLoaders);
}
- if (includebootstrapclasses != null) {
- agentOptions.setIncludeBootstrapClasses(includebootstrapclasses
+ if (inclBootstrapClasses != null) {
+ agentOptions.setInclBootstrapClasses(inclBootstrapClasses
.booleanValue());
}
if (sessionId != null) {