Interface GroovyCompilerPluginIntegration


  • public interface GroovyCompilerPluginIntegration
    Defines an entry point for integration with Groovy compiler plugins. Implementations of this interface should scan the project build configuration in search of a specific Groovy compiler plugin and, if found, extract compile sources configuration from the configuration of that plugin. The obtained compile sources configuration, if found, will then be used if no custom sources/testSources configuration has been specified for the verify goal
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      Optional<org.apache.maven.model.FileSet[]> getSources​(org.apache.maven.model.Build build, org.apache.maven.execution.MavenSession mavenSession)  
      Optional<org.apache.maven.model.FileSet[]> getTestSources​(org.apache.maven.model.Build build, org.apache.maven.execution.MavenSession mavenSession)  
    • Method Detail

      • getSources

        Optional<org.apache.maven.model.FileSet[]> getSources​(org.apache.maven.model.Build build,
                                                              org.apache.maven.execution.MavenSession mavenSession)
      • getTestSources

        Optional<org.apache.maven.model.FileSet[]> getTestSources​(org.apache.maven.model.Build build,
                                                                  org.apache.maven.execution.MavenSession mavenSession)