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 maven-clover2-plugin Show documentation
Show all versions of maven-clover2-plugin Show documentation
Maven plugin for Clover.
MIGRATION NOTICE: Since next major Clover release this plugin will be renamed to
com.atlassian.maven.plugins:clover-maven-plugin. Thus, goals will also be renamed, e.g.
'clover2:setup' will become 'clover:setup'.
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();
}