@Incubating public interface ComponentMetadataHandler
Example:
dependencies {
components {
//triggered during dependency resolution, for each component:
eachComponent { ComponentMetadataDetails details ->
if (details.id.group == "org.foo") {
def version = details.id.version
// assuming status is last part of version string
details.status = version.substring(version.lastIndexOf("-") + 1)
details.statusScheme = ["bronze", "silver", "gold", "platinum"]
}
}
//Configuring component module metadata for the entire "google-collections" module,
// declaring that legacy library was replaced with "guava".
//This way, Gradle's conflict resolution can use this information and use "guava"
// in case both libraries appear in the same dependency tree.
module("com.google.collections:google-collections").replacedBy("com.google.guava:guava")
}
}
| 修飾子とタイプ | メソッドと説明 |
|---|---|
void |
eachComponent(Action<? super ComponentMetadataDetails> rule)
Adds a rule to modify the metadata of depended-on software components.
|
void |
eachComponent(Closure<?> rule)
Adds a rule to modify the metadata of depended-on software components.
|
ComponentModuleMetadataDetails |
module(Object moduleNotation)
Enables configuring component module metadata.
|
void eachComponent(Action<? super ComponentMetadataDetails> rule)
rule - the rule to be addedvoid eachComponent(Closure<?> rule)
The rule must declare a ComponentMetadataDetails as it's first parameter,
allowing the component metadata to be modified.
In addition, the rule can declare additional (read-only) parameters, which may provide extra details about the component. The order of these additional parameters is irrelevant.
Presently, the following additional parameter types are supported:
IvyModuleDescriptor Additional Ivy-specific
metadata. Rules declaring this parameter will only be invoked for components packaged as an Ivy module.rule - the rule to be addedComponentModuleMetadataDetails module(Object moduleNotation)
//declaring that google collections are replaced by guava
//so that conflict resolution can take advantage of this information:
dependencies.components.module('com.google.collections:google-collections').replacedBy('com.google.guava:guava')
moduleNotation - an identifier of the module. String "group:name", e.g. 'org.gradle:gradle-core'
or an instance of ModuleIdentifier