Interface CodeOwnersSourceSet

  • All Implemented Interfaces:
    org.gradle.api.Named

    
    public interface CodeOwnersSourceSet
     implements Named
                        
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract ConfigurableFileCollection getSources() The source files collection to be analyzed by the CodeOwners tasks.
      abstract ConfigurableFileCollection getClasses() The compiled classes files collection to be analyzed by the CodeOwners tasks.
      abstract ConfigurableFileCollection getMappings() The external mapping files (.codeowners) collection to be analyzed by the CodeOwners tasks.
      • Methods inherited from class org.gradle.api.Named

        getName
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • getSources

         abstract ConfigurableFileCollection getSources()

        The source files collection to be analyzed by the CodeOwners tasks.

        Usually you don't need to feed them manually, as they are automatically collected from the build

      • getClasses

         abstract ConfigurableFileCollection getClasses()

        The compiled classes files collection to be analyzed by the CodeOwners tasks.

        Usually you don't need to feed them manually, as they are automatically collected from the build

      • getMappings

         abstract ConfigurableFileCollection getMappings()

        The external mapping files (.codeowners) collection to be analyzed by the CodeOwners tasks.

        Usually you don't need to feed them manually, as they are automatically collected from the build