public interface ModuleSearchSupport
ModuleDependency
.
This can be used to determine the used dependencies and their version,
like the used JUnit or Java EE versions in a project or configuration.Modifier and Type | Method and Description |
---|---|
Set<GradleDependency.ModuleDependency> |
findModules(String gav)
Search for module dependencies, matches the given filter criteria.
|
Set<GradleDependency.ModuleDependency> |
findModules(String group,
String artifact,
String version)
Search for module dependencies, matches the given filter criteria.
|
Set<GradleDependency.ModuleDependency> findModules(String group, String artifact, String version)
null
for any of the parameters would mean match
all for that parameter.group
- regexp matcher for the group part.artifact
- regexp matcher for the artifact part.version
- regexp matcher for the version part.Pattern
Set<GradleDependency.ModuleDependency> findModules(String gav)
gav
- the filter criteria in string formModuleSearchSupport.findModules(java.lang.String, java.lang.String, java.lang.String)