public interface DependenciesHandler
| Modifier and Type | Method and Description |
|---|---|
void |
dependency(Map<String,String> id)
Configures dependency management for the dependency identified by the given
id. |
void |
dependency(Map<String,String> id,
Action<DependencyHandler> action)
Configures dependency management for the dependency identified by the given
id. |
void |
dependency(Map<String,String> id,
groovy.lang.Closure<?> closure)
Configures dependency management for the dependency identified by the given
id. |
void |
dependency(String id)
Configures dependency management for the dependency identified by the given
id. |
void |
dependency(String id,
Action<DependencyHandler> action)
Configures dependency management for the dependency identified by the given
id. |
void |
dependency(String id,
groovy.lang.Closure<?> closure)
Configures dependency management for the dependency identified by the given
id. |
void |
dependencySet(Map<String,String> setId,
Action<DependencySetHandler> action)
Configures dependency management for a set of dependencies with the same
group and version as specified by the given setId. |
void |
dependencySet(Map<String,String> setId,
groovy.lang.Closure<?> closure)
Configures dependency management for a set of dependencies with the same
group and version as specified by the given setId. |
void |
dependencySet(String setId,
Action<DependencySetHandler> action)
Configures dependency management for a set of dependencies with the same
group and version as specified by the given setId. |
void |
dependencySet(String setId,
groovy.lang.Closure<?> closure)
Configures dependency management for a set of dependencies with the same
group and version as specified by the given setId. |
void dependency(String id)
id. The id is a string of the form group:name:version.id - the id of the dependencyvoid dependency(Map<String,String> id)
id. The id is a map with group, name, and version
entries.id - the id of the dependencyvoid dependency(String id, groovy.lang.Closure<?> closure)
id. The dependency management can be further configured using the given
closure that is called with a DependencyHandler as its delegate.
The id is a string of the form group:name:version.id - the id of the dependencyclosure - the closure used to further configure the dependency managementDependencyHandlervoid dependency(String id, Action<DependencyHandler> action)
id. The dependency management can be further configured using the given
action. The id is a string of the form group:name:version or a map
with group, name, and version entries.id - the id of the dependencyaction - the action used to further configure the dependency managementDependencyHandlervoid dependency(Map<String,String> id, groovy.lang.Closure<?> closure)
id. The dependency management can be further configured using the given
closure that is called with a DependencyHandler as its delegate.
The id is a map with group, name, and version entries.id - the id of the dependencyclosure - the closure used to further configure the dependency managementDependencyHandlervoid dependency(Map<String,String> id, Action<DependencyHandler> action)
id. The dependency management can be further configured using the given
action. The id is a map with group, name, and
version entries.id - the id of the dependencyaction - the action used to further configure the dependency managementDependencyHandlervoid dependencySet(String setId, groovy.lang.Closure<?> closure)
group and version as specified by the given setId. The id
is a string of the form group:version. Entries are added to the set using
the given closure that is called with a DependencySetHandler as its
delegate.setId - the id of the setclosure - the closure used to configure the entriesDependencySetHandlervoid dependencySet(String setId, Action<DependencySetHandler> action)
group and version as specified by the given setId. The id
is a string of the form group:version. Entries are added to the set using
the given action.setId - the id of the setaction - the action used to configure the entriesDependencySetHandlervoid dependencySet(Map<String,String> setId, groovy.lang.Closure<?> closure)
group and version as specified by the given setId. The id
is a map with group and version entries. Entries are added to the
set using the given closure that is called with a
DependencySetHandler as its delegate.setId - a map containing the group and version of the set of
dependenciesclosure - the closure used to configure the entriesDependencySetHandlervoid dependencySet(Map<String,String> setId, Action<DependencySetHandler> action)
group and version as specified by the given setId. The id
is a map with group and version entries. Entries are added to the
set using the given action.setId - a map containing the group and version of the set of
dependenciesaction - the action used to configure the entriesDependencySetHandler