Package com.datadog.gradle.plugin
Interface RepositoryDetector
-
- All Implemented Interfaces:
public interface RepositoryDetectorDescribes a class which can detect information about the version control repository associated with a Gradle Project.
-
-
Method Summary
Modifier and Type Method Description abstract List<RepositoryInfo>detectRepositories(List<File> sourceSetRoots, String extensionProvidedRemoteUrl)Perform a local analysis of the repository. -
-
Method Detail
-
detectRepositories
abstract List<RepositoryInfo> detectRepositories(List<File> sourceSetRoots, String extensionProvidedRemoteUrl)
Perform a local analysis of the repository.
- Parameters:
sourceSetRoots- the list of relevant sourceSet root foldersextensionProvidedRemoteUrl- the remote repository url provided in the plugin extension.- Returns:
a list of RepositoryInfo describing the underlying Gradle Project
-
-
-
-