user1490279
user1490279

Reputation: 31

intellij play framework 2.0.2 configuration

Any idea how to configure Intellij Idea to use the 2.0.2 play framework in the play console?

I've updated my application to 2.0.2 (outside of Intellij) but can not run it inside Intellij because the console always starts up as 2.0.1.

Upvotes: 3

Views: 871

Answers (1)

rintcius
rintcius

Reputation: 3313

I also ran into this issue a couple of days ago and created a blog post about it after I found how it can be solved for the time being: http://wordpress.rintcius.nl/post/update-play-framework-configuration-in-intellij

To summarise (IntelliJ 11.1.2 on Linux):

  1. Close IntelliJ
  2. Open file ~/.IntelliJIdea11/config/options/other.xml
  3. Change the home value in this entry: <component name="PlayframeworkConfiguration" home="$USER_HOME$/programs/play-2.0.1" />

Upvotes: 1

Related Questions