|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
interface Conf2ScopeMappingContainer
Defines a set of rules for how to map the Gradle dependendencies to a pom. This mapping is based on the configuration the dependencies belong to.
Field Summary | |
---|---|
java.lang.String |
COMPILE
|
java.lang.String |
PROVIDED
|
java.lang.String |
RUNTIME
|
java.lang.String |
TEST
|
Method Summary | |
---|---|
Conf2ScopeMappingContainer
|
addMapping(int priority, Configuration configuration, java.lang.String scope)
Specifies that dependencies of a certain configuration should be mapped against a certain Maven scope. |
Conf2ScopeMapping
|
getMapping(Configuration configurations)
Returns a scope that corresponds to the given configurations. |
Map
|
getMappings()
Returns a map with all the configuration to scope mappings. |
boolean
|
isSkipUnmappedConfs()
Returns whether unmapped configuration should be skipped or not. |
void
|
setSkipUnmappedConfs(boolean skipDependenciesWithUnmappedConfiguration)
Sets, whether unmapped configuration should be skipped or not. |
Field Detail |
---|
java.lang.String COMPILE
java.lang.String PROVIDED
java.lang.String RUNTIME
java.lang.String TEST
Method Detail |
---|
public Conf2ScopeMappingContainer addMapping(int priority, Configuration configuration, java.lang.String scope)
Specifies that dependencies of a certain configuration should be mapped against a certain Maven scope. A configuration can be mapped to one and only one scope. If this method is called more than once for a particular configuration, the last call wins.
See #getMapping(Configuration[]) for the rules how a scope is choosen from a set of mappings.
public Conf2ScopeMapping getMapping(Configuration configurations)
Which scope is returned depends on the existing mappings. See #addMapping(int, Configuration, String). If only one configuration is mapped, this mapping is used to choose the scope. If more than one configuraton of a dependency is mapped, and those mappings all map to the same scope, this scope is used. If more than one configuration is mapped and the mappings map to different scopes, the mapping with the highest priority is used. If there is more than one mapping with the highest priority and those mappings map to different scopes, an exception is thrown.
public Map getMappings()
public boolean isSkipUnmappedConfs()
public void setSkipUnmappedConfs(boolean skipDependenciesWithUnmappedConfiguration)
Groovy Documentation