com.atlassian.maven.plugin.clover.internal.CompilerConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clover-maven-plugin Show documentation
Show all versions of clover-maven-plugin Show documentation
Maven plugin for Clover.
MIGRATION NOTICE: Since Clover 4.1.0 this plugin is named com.atlassian.maven.plugins:clover-maven-plugin.
In previous versions it was named com.atlassian.maven.plugins:maven-clover2-plugin.
The newest version!
package com.atlassian.maven.plugin.clover.internal;
import com.atlassian.maven.plugin.clover.DistributedCoverage;
import java.util.Map;
import java.util.Set;
public interface CompilerConfiguration extends CloverConfiguration {
Set getIncludes();
Set getExcludes();
boolean isIncludesAllSourceRoots();
String getJdk();
String getFlushPolicy();
int getFlushInterval();
boolean isUseFullyQualifiedJavaLang();
String getEncoding();
Map getMethodContexts();
Map getStatementContexts();
DistributedCoverage getDistributedCoverage();
int getStaleMillis();
String getInstrumentation();
String getInstrumentLambda();
boolean isCopyExcludedFiles();
}