Package org.apache.maven.plugin.surefire
Interface ProviderInfo
-
- All Known Subinterfaces:
ConfigurableProviderInfo
- All Known Implementing Classes:
AbstractSurefireMojo.DynamicProviderInfo
,AbstractSurefireMojo.JUnit3ProviderInfo
,AbstractSurefireMojo.JUnit4ProviderInfo
,AbstractSurefireMojo.JUnitCoreProviderInfo
,AbstractSurefireMojo.JUnitPlatformProviderInfo
,AbstractSurefireMojo.TestNgProviderInfo
public interface ProviderInfo
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addProviderProperties()
java.util.Set<org.apache.maven.artifact.Artifact>
getProviderClasspath()
java.lang.String
getProviderName()
boolean
isApplicable()
-
-
-
Method Detail
-
getProviderName
@Nonnull java.lang.String getProviderName()
-
isApplicable
boolean isApplicable()
-
getProviderClasspath
@Nonnull java.util.Set<org.apache.maven.artifact.Artifact> getProviderClasspath() throws org.apache.maven.plugin.MojoExecutionException
- Throws:
org.apache.maven.plugin.MojoExecutionException
-
addProviderProperties
void addProviderProperties() throws org.apache.maven.plugin.MojoExecutionException
- Throws:
org.apache.maven.plugin.MojoExecutionException
-
-