Package org.gradle.api.publish.ivy
Interface IvyDependency
-
public interface IvyDependencyA module dependency declared in an ivy dependency descriptor published as part of anIvyPublication.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetConfMapping()The configuration mapping string that will be output for this dependency.StringgetModule()The module value for this dependency.StringgetOrganisation()The organisation value for this dependency.StringgetRevision()The revision value for this dependency.booleanisTransitive()The transitive value for this dependency.
-
-
-
Method Detail
-
getOrganisation
String getOrganisation()
The organisation value for this dependency.
-
getModule
String getModule()
The module value for this dependency.
-
getRevision
String getRevision()
The revision value for this dependency.
-
getConfMapping
String getConfMapping()
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()
The transitive value for this dependency.- Since:
- 3.1
-
-