[GRADLE-1437] Create moduleName property for ideaModule task Created: 10/Mar/11 Updated: 04/Jan/13 Resolved: 10/Mar/11 |
|
Status: | Resolved |
Project: | Gradle |
Affects Version/s: | 1.0-milestone-1 |
Fix Version/s: | 1.0-milestone-2 |
Type: | Improvement | ||
Reporter: | Szczepan Faber | Assignee: | Szczepan Faber |
Resolution: | Fixed | Votes: | 0 |
Description |
The user changes the IntelliJ module name of specific gradle project via the outputFile property on ideaModule task. It would be easier if the user could change a module name by providing a string value. Example: project(':someProject') { ideaModule { //instead of a file: outputFile = file(project.projectDir.canonicalPath + "/some-interesting-project.iml") //provide a module name: moduleName = "some-interesting-project" } } |