Package org.gradle.api.publish.ivy
Interface IvyDependency
-
@Deprecated public interface IvyDependency
Deprecated.This type is not referenced by any other public API classes. It will be removed in Gradle 9.0A module dependency declared in an ivy dependency descriptor published as part of anIvyPublication
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.String
getConfMapping()
Deprecated.The configuration mapping string that will be output for this dependency.java.lang.String
getModule()
Deprecated.The module value for this dependency.java.lang.String
getOrganisation()
Deprecated.The organisation value for this dependency.java.lang.String
getRevision()
Deprecated.The revision value for this dependency.boolean
isTransitive()
Deprecated.The transitive value for this dependency.
-
-
-
Method Detail
-
getOrganisation
java.lang.String getOrganisation()
Deprecated.The organisation value for this dependency.
-
getModule
java.lang.String getModule()
Deprecated.The module value for this dependency.
-
getRevision
java.lang.String getRevision()
Deprecated.The revision value for this dependency.
-
getConfMapping
java.lang.String getConfMapping()
Deprecated.The configuration mapping string that will be output for this dependency. A null value indicates that no "conf" attribute will be written for this dependency.- Returns:
- the configuration mapping
-
isTransitive
boolean isTransitive()
Deprecated.The transitive value for this dependency.- Since:
- 3.1
-
-