Package io.github.gmazzo.codeowners
Interface CodeOwnersSourceSet
-
- All Implemented Interfaces:
-
org.gradle.api.Named
public interface CodeOwnersSourceSet implements Named
-
-
Method Summary
Modifier and Type Method Description abstract ConfigurableFileCollectiongetSources()The source files collection to be analyzed by the CodeOwners tasks. abstract ConfigurableFileCollectiongetClasses()The compiled classes files collection to be analyzed by the CodeOwners tasks. abstract ConfigurableFileCollectiongetMappings()The external mapping files (.codeowners) collection to be analyzed by the CodeOwners tasks. -
-
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
-
-
-
-