jdaugherty opened a new issue, #330: URL: https://github.com/apache/grails-intellij-plugin/issues/330
On our project we do have a master project that have a lot of submodules (plugins) Every time I have to start a new idea project (it is convenient for another branch ) from existing sources there are a lot of warning regarding missing Grails SDKs for these modules. There is now option to set SDK for all at once. I do believe that the problem root is hidden under 'workspace.xml' file: ``` <component name="GrailsSDKManager"> <option name="grailsSDKs"> <map> <entry key="D:\Projects\my-project" value="D:\java\grails-2.3.6" /> <entry key="D:\Projects\my-project\plugins\my-cool-plugin" value="D:\java\grails-2.3.6" /> </map> </option> </component> ``` Which could be replaced (seems to work): ``` <component name="GrailsSDKManager"> <option name="grailsSDKs"> <map> <entry key="$PROJECT_DIR$" value="D:\java\grails-2.3.6" /> <entry key="$PROJECT_DIR$/plugins/my-cool-plugin" value="D:\java\grails-2.3.6" /> </map> </option> </component> ``` --- *Imported from [IDEA-188191](https://youtrack.jetbrains.com/issue/IDEA-188191) · Type: Bug · Votes: 0* *Comments, attachments, dates and reporter are not part of the export — follow the link above for the full history.* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
