Movatterモバイル変換


[0]ホーム

URL:


IvyModuleDescriptorSpec

Table of Contents

Properties
Methods
Script blocks
Property details
Method details
API Documentation:IvyModuleDescriptorSpec

The descriptor of any Ivy publication.

Corresponds to theXML version of the Ivy Module Descriptor.

TheIvyModuleDescriptorSpec.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.IvyModuleDescriptorSpec.description(org.gradle.api.Action).

Properties

PropertyDescription
branch

The branch for this publication

extraInfo

The extra info element spec for this publication

status

The status for this publication.

Methods

MethodDescription
author(action)

Creates, configures and adds an author to this publication.

description(action)

Configures the description for this publication.

extraInfo(namespace, elementName, value)

Adds a new extra info element to the publication

license(action)

Creates, configures and adds a license to this publication.

withXml(action)

Allow configuration of the descriptor, after it has been generated according to the input data.

Script blocks

No script blocks

Property details

Stringbranch

The branch for this publication

IvyExtraInfoSpecextraInfo (read-only)

The extra info element spec for this publication

Stringstatus

The status for this publication.

Method details

voidauthor(Action<? superIvyModuleDescriptorAuthor> action)

Creates, configures and adds an author to this publication.

voiddescription(Action<? superIvyModuleDescriptorDescription> action)

Configures the description for this publication.

voidextraInfo(String namespace,String elementName,String value)

Adds a new extra info element to the publication

voidlicense(Action<? superIvyModuleDescriptorLicense> action)

Creates, configures and adds a license to this publication.

voidwithXml(Action<? superXmlProvider> action)

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.@org =="junit" }.@rev ="4.10"        }      }    }  }}

Note that due to Gradle's internal type conversion system, you can pass a Groovy closure to this method andit will be automatically converted to anAction.

Each action/closure passed to this method will be stored as a callback, and executed when the publicationthat this descriptor is attached to is published.

For details on the structure of the XML to be modified, seetheIvy Module Descriptor reference.


[8]ページ先頭

©2009-2025 Movatter.jp