|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
@Incubating @HasInternalProtocol public interface IvyModuleDescriptor
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.
Method Summary | |
---|---|
File
|
getFile()
The generated descriptor file. |
void
|
setFile(File descriptorFile)
Sets where the descriptor file should be generated. |
void
|
withXml(Action action)
Allow configuration of the descriptor, after it has been generated according to the input data. |
Method Detail |
---|
public File getFile()
public void setFile(File descriptorFile)
descriptorFile
- The new location to generate the descriptor to
public void withXml(Action action)
apply plugin: "ivy-publish" publishing { publications { ivy { descriptor { withXml { asNode().dependencies.dependency.find { it.
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.
Gradle API 1.3-rc-1