aboutsummaryrefslogtreecommitdiff
path: root/jacoco-maven-plugin/src/org/jacoco/maven/AbstractJacocoMojo.java
diff options
context:
space:
mode:
Diffstat (limited to 'jacoco-maven-plugin/src/org/jacoco/maven/AbstractJacocoMojo.java')
-rw-r--r--jacoco-maven-plugin/src/org/jacoco/maven/AbstractJacocoMojo.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/jacoco-maven-plugin/src/org/jacoco/maven/AbstractJacocoMojo.java b/jacoco-maven-plugin/src/org/jacoco/maven/AbstractJacocoMojo.java
index d1612ab6..3ed86ec0 100644
--- a/jacoco-maven-plugin/src/org/jacoco/maven/AbstractJacocoMojo.java
+++ b/jacoco-maven-plugin/src/org/jacoco/maven/AbstractJacocoMojo.java
@@ -11,8 +11,6 @@
*******************************************************************************/
package org.jacoco.maven;
-import java.util.List;
-
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
@@ -31,22 +29,6 @@ public abstract class AbstractJacocoMojo extends AbstractMojo {
private MavenProject project;
/**
- * A list of class files to include in instrumentation/analysis/reports. May
- * use wildcard characters (* and ?). When not specified everything will be
- * included.
- */
- @Parameter
- private List<String> includes;
-
- /**
- * A list of class files to exclude from instrumentation/analysis/reports.
- * May use wildcard characters (* and ?). When not specified nothing will be
- * excluded.
- */
- @Parameter
- private List<String> excludes;
-
- /**
* Flag used to suppress execution.
*/
@Parameter(property = "jacoco.skip", defaultValue = "false")
@@ -90,22 +72,4 @@ public abstract class AbstractJacocoMojo extends AbstractMojo {
return project;
}
- /**
- * Returns the list of class files to include.
- *
- * @return class files to include, may contain wildcard characters
- */
- protected List<String> getIncludes() {
- return includes;
- }
-
- /**
- * Returns the list of class files to exclude.
- *
- * @return class files to exclude, may contain wildcard characters
- */
- protected List<String> getExcludes() {
- return excludes;
- }
-
}