Interface RepositoryContentDescriptor
-
- All Known Subinterfaces:
MavenRepositoryContentDescriptor
@Incubating public interface RepositoryContentDescriptor
Descriptor of a repository content, used to avoid reaching to an external repository when not needed.
Excludes are applied after includes. This means that by default, everything is included and nothing excluded. If includes are added, then if the module doesn't match any of the includes, it's excluded. Then if it does, but it also matches one of the excludes, it's also excluded.
- Since:
- 5.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidexcludeGroup(String group)Declares that an entire group shouldn't be searched for in this repository.voidexcludeGroupByRegex(String groupRegex)Declares that an entire group shouldn't be searched for in this repository.voidexcludeModule(String group, String moduleName)Declares that an entire module shouldn't be searched for in this repository.voidexcludeModuleByRegex(String groupRegex, String moduleNameRegex)Declares that an entire module shouldn't be searched for in this repository, using regular expressions.voidexcludeVersion(String group, String moduleName, String version)Declares that a specific module version shouldn't be searched for in this repository.voidexcludeVersionByRegex(String groupRegex, String moduleNameRegex, String versionRegex)Declares that a specific module version shouldn't be searched for in this repository, using regular expressions.voidincludeGroup(String group)Declares that an entire group should be searched for in this repository.voidincludeGroupByRegex(String groupRegex)Declares that an entire group should be searched for in this repository.voidincludeModule(String group, String moduleName)Declares that an entire module should be searched for in this repository.voidincludeModuleByRegex(String groupRegex, String moduleNameRegex)Declares that an entire module should be searched for in this repository, using regular expressions.voidincludeVersion(String group, String moduleName, String version)Declares that a specific module version should be searched for in this repository.voidincludeVersionByRegex(String groupRegex, String moduleNameRegex, String versionRegex)Declares that a specific module version should be searched for in this repository, using regular expressions.voidnotForConfigurations(String... configurationNames)Declares that this repository should not be used for a specific set of configurations.<T> voidonlyForAttribute(Attribute<T> attribute, T... validValues)Declares that this repository will only be searched if the consumer requires a specific attribute.voidonlyForConfigurations(String... configurationNames)Declares that this repository should only be used for a specific set of configurations.
-
-
-
Method Detail
-
includeGroup
void includeGroup(String group)
Declares that an entire group should be searched for in this repository.- Parameters:
group- the group name
-
includeGroupByRegex
void includeGroupByRegex(String groupRegex)
Declares that an entire group should be searched for in this repository.- Parameters:
groupRegex- a regular expression of the group name
-
includeModule
void includeModule(String group, String moduleName)
Declares that an entire module should be searched for in this repository.- Parameters:
group- the group namemoduleName- the module name
-
includeModuleByRegex
void includeModuleByRegex(String groupRegex, String moduleNameRegex)
Declares that an entire module should be searched for in this repository, using regular expressions.- Parameters:
groupRegex- the group name regular expressionmoduleNameRegex- the module name regular expression
-
includeVersion
void includeVersion(String group, String moduleName, String version)
Declares that a specific module version should be searched for in this repository.- Parameters:
group- the group namemoduleName- the module nameversion- the module version
-
includeVersionByRegex
void includeVersionByRegex(String groupRegex, String moduleNameRegex, String versionRegex)
Declares that a specific module version should be searched for in this repository, using regular expressions.- Parameters:
groupRegex- the group name regular expressionmoduleNameRegex- the module name regular expressionversionRegex- the module version regular expression
-
excludeGroup
void excludeGroup(String group)
Declares that an entire group shouldn't be searched for in this repository.- Parameters:
group- the group name
-
excludeGroupByRegex
void excludeGroupByRegex(String groupRegex)
Declares that an entire group shouldn't be searched for in this repository.- Parameters:
groupRegex- the group name regular expression
-
excludeModule
void excludeModule(String group, String moduleName)
Declares that an entire module shouldn't be searched for in this repository.- Parameters:
group- the group namemoduleName- the module name
-
excludeModuleByRegex
void excludeModuleByRegex(String groupRegex, String moduleNameRegex)
Declares that an entire module shouldn't be searched for in this repository, using regular expressions.- Parameters:
groupRegex- the group name regular expressionmoduleNameRegex- the module name regular expression
-
excludeVersion
void excludeVersion(String group, String moduleName, String version)
Declares that a specific module version shouldn't be searched for in this repository.- Parameters:
group- the group namemoduleName- the module nameversion- the module version
-
excludeVersionByRegex
void excludeVersionByRegex(String groupRegex, String moduleNameRegex, String versionRegex)
Declares that a specific module version shouldn't be searched for in this repository, using regular expressions.- Parameters:
groupRegex- the group namemoduleNameRegex- the module nameversionRegex- the module version
-
onlyForConfigurations
void onlyForConfigurations(String... configurationNames)
Declares that this repository should only be used for a specific set of configurations. Defaults to any configuration- Parameters:
configurationNames- the names of the configurations the repository will be used for
-
notForConfigurations
void notForConfigurations(String... configurationNames)
Declares that this repository should not be used for a specific set of configurations. Defaults to any configuration- Parameters:
configurationNames- the names of the configurations the repository will not be used for
-
onlyForAttribute
<T> void onlyForAttribute(Attribute<T> attribute, T... validValues)
Declares that this repository will only be searched if the consumer requires a specific attribute.- Type Parameters:
T- the type of the attribute- Parameters:
attribute- the attributevalidValues- the list of accepted values
-
-