Setting up grails project in Intellij

grails, intellij-idea

Solution

Check is Grails plugin installed.

Go to Projects, right click to your project name > Grails > Configure Grails SDK.

Create SDK from there ...

Problem

I'm trying to import in an existing grails project into Intellij but its not recognizing the SDK. I already setup my paths in my home directory /.bash_profile here is what I got going in there. ``` export GRAILS_HOME=/Applications/grails-2.0.4 export PATH=$PATH:$GRAILS_HOME/bin ``` Now when I fire up Intellij and do a file > new Project > Create project from existing source I name my project then when I get to SDK there is no grails SDK. I presumed when I setup my path in the .bash_profile it would recognize the path to the grails SDK. Any help on this would be great.

Original source

Related problems