|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
org.gradle.api.artifacts.SelfResolvingDependencyorg.gradle.api.Buildable
org.gradle.tooling.model.Dependency
public interface SelfResolvingDependency extends Buildable, Dependency
A SelfResolvingDependency is a Dependency which is able to resolve itself, independent of a repository.
Method Summary | |
---|---|
java.util.Set
|
resolve()
Resolves this dependency. |
java.util.Set
|
resolve(boolean transitive)
Resolves this dependency by specifying the transitive mode. |
Methods inherited from interface Buildable | |
---|---|
getBuildDependencies |
Method Detail |
---|
public java.util.Set resolve()
public java.util.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.
transitive
- Whether to resolve transitively. Has only an effect on a ProjectDependency
Groovy Documentation