Package org.gradle.api.publish.ivy
Interface IvyModuleDescriptorSpec
public interface IvyModuleDescriptorSpec
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.
 However, the preferred way to customize the project information to be published is to use the dedicated configuration methods exposed by this class, e.g.
 description(Action).
- Since:
- 1.3
- 
Method SummaryModifier and TypeMethodDescriptionvoidauthor(Action<? super IvyModuleDescriptorAuthor> action) Creates, configures and adds an author to this publication.voiddescription(Action<? super IvyModuleDescriptorDescription> action) Configures the description for this publication.voidAdds a new extra info element to the publicationReturns the branch for this publicationReturns the extra info element spec for this publicationReturns the status for this publication.voidlicense(Action<? super IvyModuleDescriptorLicense> action) Creates, configures and adds a license to this publication.voidSets the branch for this publicationvoidSets the status for this publication.voidwithXml(Action<? super XmlProvider> action) Allow configuration of the descriptor, after it has been generated according to the input data.
- 
Method Details- 
withXmlAllow configuration of the descriptor, after it has been generated according to the input data.plugins { id 'ivy-publish' } publishing { publications { ivy(IvyPublication) { descriptor { withXml { asNode().dependencies.dependency.find { it.@org == "junit" }.@rev = "4.10" } } } } }Note that due to Gradle's internal type conversion system, you can pass a Groovy closure to this method and it will be automatically converted to anAction.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. - Parameters:
- action- The configuration action.
- See Also:
 
- 
getStatusReturns the status for this publication.
- 
setStatusSets the status for this publication.
- 
getBranchReturns the branch for this publication
- 
setBranchSets the branch for this publication
- 
getExtraInfoIvyExtraInfoSpec getExtraInfo()Returns the extra info element spec for this publication
- 
extraInfoAdds a new extra info element to the publication
- 
licenseCreates, configures and adds a license to this publication.- Since:
- 4.8
 
- 
authorCreates, configures and adds an author to this publication.- Since:
- 4.8
 
- 
descriptionConfigures the description for this publication.- Since:
- 4.8
 
 
-