Status property in IvyPublication Gradle 1.7

Hi in Gradle 1.7. documentation was written: The Ivy module identifying attributes of the publication are mapped as follows:

module - project.name organisation - project.group revision - project.version status - project.status

But the propeprties for the IvyPublication object are: Property

artifacts

configurations

descriptor

module

organisation revision

Where is status property? How can I change it?

You use ‘descriptor.status’ for this value. See http://www.gradle.org/docs/nightly/userguide/publishing_ivy.html#N169EE

Thanks, Daz.