Details
-
Type:
Bug
-
Status:
Open
-
Resolution: Unresolved
-
Affects Version/s: 1.1
-
Fix Version/s: None
Description
The following configuration does not generate an IPR file.
allprojects {
apply plugin: 'idea'
idea.project.jdkName = JAVA_VERSION
idea.project.languageLevel = JAVA_VERSION
idea.project.outputFile = file(rootProject.projectDir.path + '/.idea/' + project.name + '.ipr')
idea.module.iml.generateTo = file(rootProject.projectDir.path + '/.idea/modules')
}
While this one does:
apply plugin: 'idea'
idea.project.jdkName = JAVA_VERSION
idea.project.languageLevel = JAVA_VERSION
idea.project.outputFile = file(rootProject.projectDir.path + '/.idea/' + project.name + '.ipr')
idea.module.iml.generateTo = file(rootProject.projectDir.path + '/.idea/modules')
allprojects {
apply plugin: 'idea'
idea.module.iml.generateTo = file(rootProject.projectDir.path + '/.idea/modules')
}
Activity
Luke Daley
made changes -
| Field | Original Value | New Value |
|---|---|---|
| Workflow | jira with pivotal tracker [ 15975 ] | jira with pivotal tracker (no resolved, only closed) [ 18023 ] |
Luke Daley
made changes -
| Workflow | jira with pivotal tracker (no resolved, only closed) [ 18023 ] | Copy of jira with pivotal tracker (no closed, only resolved) [ 20640 ] |