| API Documentation: | IdeaWorkspace | 
|---|
Enables fine-tuning workspace details (*.iws file) of the IDEA plugin.
At the moment, the only practical way of manipulating the resulting content is via the withXml hook:
plugins {
    id 'java'
    id 'idea'
}
idea.workspace.iws.withXml { provider ->
    provider.asNode().appendNode('gradleRocks', 'true')
}
| Property | Description | 
| iws | Enables advanced manipulation of the output XML. | 
| Method | Description | 
| iws(action) | Enables advanced manipulation of the output XML. | 
| Block | Description | 
| iws | Enables advanced manipulation of the output XML. | 
Enables advanced manipulation of the output XML.
For example see docs for IdeaWorkspace
void iws(Action<? super XmlFileContentMerger>
Action<? super XmlFileContentMerger>Enables advanced manipulation of the output XML.
For example see docs for IdeaWorkspace
Enables advanced manipulation of the output XML.
For example see docs for IdeaWorkspace
- Delegates to:
- XmlFileContentMergerfrom- iws