Package org.gradle.api.artifacts
Interface ProjectDependency
- All Superinterfaces:
- Buildable,- Dependency,- HasAttributes,- HasConfigurableAttributes<ModuleDependency>,- ModuleDependency,- SelfResolvingDependency
A ProjectDependency is a Dependency on another project in the current project hierarchy.
- 
Field SummaryFields inherited from interface org.gradle.api.artifacts.DependencyARCHIVES_CONFIGURATION, CLASSIFIER, DEFAULT_CONFIGURATION
- 
Method SummaryModifier and TypeMethodDescriptioncopy()Creates and returns a new dependency with the property values of this one.Deprecated.Deprecated.This method will be removed in Gradle 9.0.getPath()Get the path to the project that this dependency refers to relative to its owning build.resolve()Deprecated.This class will no longer implementSelfResolvingDependencyin Gradle 9.0resolve(boolean transitive) Deprecated.This class will no longer implementSelfResolvingDependencyin Gradle 9.0Methods inherited from interface org.gradle.api.artifacts.Dependencybecause, contentEquals, getGroup, getName, getReason, getVersionMethods inherited from interface org.gradle.api.artifacts.ModuleDependencyaddArtifact, artifact, artifact, attributes, capabilities, doNotEndorseStrictVersions, endorseStrictVersions, exclude, getArtifacts, getAttributes, getCapabilitySelectors, getExcludeRules, getRequestedCapabilities, getTargetConfiguration, isEndorsingStrictVersions, isTransitive, setTargetConfiguration, setTransitive
- 
Method Details- 
getPathString getPath()Get the path to the project that this dependency refers to relative to its owning build.- Since:
- 8.11
- See Also:
 
- 
getDependencyProjectDeprecated.This method will be removed in Gradle 9.0. Accessing the mutable state of other projects should be avoided.Returns the project associated with this project dependency.
- 
copyProjectDependency copy()Creates and returns a new dependency with the property values of this one.- Specified by:
- copyin interface- Dependency
- Specified by:
- copyin interface- ModuleDependency
- Returns:
- The copy. Never returns null.
 
- 
getBuildDependenciesDeprecated.This class will no longer implementSelfResolvingDependencyin Gradle 9.0Returns a dependency which contains the tasks which build this artifact. AllBuildableimplementations must ensure that the returned dependency object is live, so that it tracks changes to the dependencies of this buildable.- Specified by:
- getBuildDependenciesin interface- Buildable
- Returns:
- The dependency. Never returns null. Returns an empty dependency when this artifact is not built by any tasks.
 
- 
resolveDeprecated.This class will no longer implementSelfResolvingDependencyin Gradle 9.0Resolves this dependency. AProjectDependencyis resolved with transitive equals true by this method.- Specified by:
- resolvein interface- SelfResolvingDependency
- Returns:
- The files which make up this dependency.
- See Also:
 
- 
resolveDeprecated.This class will no longer implementSelfResolvingDependencyin Gradle 9.0Resolves this dependency by specifying the transitive mode. This mode has only an effect if the self resolved dependency is of typeProjectDependency. In this case, if transitive isfalse, 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.- Specified by:
- resolvein interface- SelfResolvingDependency
- Parameters:
- transitive- Whether to resolve transitively. Has only an effect on a- ProjectDependency
- Returns:
- The files which make up this dependency.
 
 
- 
SelfResolvingDependencyin Gradle 9.0