public interface DependencyManagementConfigurer
DependencyManagementConfigurer provides methods for configuring dependency
management.| Modifier and Type | Method and Description |
|---|---|
void |
dependencies(Action<DependenciesHandler> action)
Configures the managed dependencies using the given
action. |
void |
dependencies(groovy.lang.Closure<?> closure)
Configures the managed dependencies using the given
closure. |
void |
imports(Action<ImportsHandler> action)
Configures the dependency management imports using the given
action. |
void |
imports(groovy.lang.Closure<?> closure)
Configures the dependency management imports using the given
closure. |
void imports(groovy.lang.Closure<?> closure)
closure. The
closure is called with an ImportsHandler as its delegate.closure - the closure to execute to configure the importsImportsHandlervoid imports(Action<ImportsHandler> action)
action.action - the action to execute to configure the importsvoid dependencies(groovy.lang.Closure<?> closure)
closure. The closure is
called with DependenciesHandler as its delegate.closure - the closure to execute to configure the dependenciesDependenciesHandlervoid dependencies(Action<DependenciesHandler> action)
action.action - the action to execute to configure the dependencies