public interface DependencySetHandler
Modifier and Type | Method and Description |
---|---|
void |
entry(String name)
Adds an entry to the set for the dependency with the given name.
|
void |
entry(String name,
Action<DependencyHandler> action)
Adds an entry to the set for the dependency with the given
name . |
void |
entry(String name,
Closure closure)
Adds an entry to the set for the dependency with the given
name . |
void entry(String name)
name
- the name of the dependencyvoid entry(String name, Closure closure)
name
. The dependency management for the
entry is further configured using the given closure
that is called with a DependencyHandler
as
its delegate.name
- the name of the dependencyclosure
- used to further configure the dependency managementDependencyHandler
void entry(String name, Action<DependencyHandler> action)
name
. The dependency management for the
entry is further configured using the given action
.name
- the name of the dependencyaction
- used to further configure the dependency management