|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
org.gradle.api.artifacts.Dependencyorg.gradle.api.artifacts.SelfResolvingDependency
interface SelfResolvingDependency extends Dependency
A SelfResolvingDependency is a Dependency which is able to resolve itself, independent of a repository.
Method Summary | |
---|---|
Set
|
resolve()
Resolves this dependency. |
Set
|
resolve(boolean transitive)
Resolves this dependency by specifying the transitive mode. |
Methods inherited from interface Dependency | |
---|---|
contentEquals, copy, getGroup, getName, getVersion |
Method Detail |
---|
public Set resolve()
public Set resolve(boolean transitive)
false
,
only the self resolving dependencies of the project configuration which are no project dependencies are resolved. If transitive
is set to true, other project dependencies belonging to the configuration of the resolved project dependency are
resolved recursively.
Groovy Documentation