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:
apply plugin: 'java'
apply plugin: 'idea'
idea.workspace.iws.withXml { provider ->
provider.asNode().appendNode('gradleRocks', 'true')
}
| Type | Name and description |
|---|---|
XmlFileContentMerger |
iwsEnables advanced manipulation of the output XML. |
| Type | Name and description |
|---|---|
void |
iws(groovy.lang.Closure closure)Enables advanced manipulation of the output XML. |
void |
mergeXmlWorkspace(Workspace xmlWorkspace) |
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