The descriptor of any Ivy publication.
Corresponds to the XML version of the Ivy Module Descriptor.
The withXml(org.gradle.api.Action) method can be used to modify the descriptor after it has been generated according to the publication data.
Type | Name and description |
---|---|
void |
extraInfo(String namespace, String elementName, String value) Adds a new extra info element to the publication |
String |
getBranch() Returns the branch for this publication |
IvyExtraInfoSpec |
getExtraInfo() Returns the extra info element spec for this publication |
String |
getStatus() Returns the status for this publication. |
void |
setBranch(String branch) Sets the branch for this publication |
void |
setStatus(String status) Sets the status for this publication. |
void |
withXml(Action<? super XmlProvider> action) Allow configuration of the descriptor, after it has been generated according to the input data. |
Adds a new extra info element to the publication
Returns the branch for this publication
Returns the extra info element spec for this publication
Returns the status for this publication.
Sets the branch for this publication
Sets the status for this publication.
Allow configuration of the descriptor, after it has been generated according to the input data.
apply plugin: "ivy-publish" publishing { publications { ivy(IvyPublication) { descriptor { withXml { asNode().dependencies.dependency.find { it.
Action
.
Each action/closure passed to this method will be stored as a callback, and executed when the publication that this descriptor is attached to is published.
For details on the structure of the XML to be modified, see the Ivy Module Descriptor reference.
action
- The configuration action.