How to create a Play project in IntelliJ IDEA 14 Community Edition?

intellij-idea, playframework-2.0, scala

Solution

Play framework is supported only in ultimate edition of Intellij Idea.

Here https://www.jetbrains.com/idea/features/editions_comparison_matrix.html, section Frameworks and Technologies.

Problem

I am trying to create a Scala project in IntelliJ IDEA 14. As mentioned in IntelliJ IDEA's help, the Scala plugin already has support for Play 2.x. I have installed the Scala plugin, and when I create a new project I can select `Scala > Scala` and `Scala > SBT` projects but there's no `Scala > Play 2.x`. Are there any additional steps needed to make this available? I am using IDEA 14 Community Edition. I have tried importing module to a Scala project using play-generated `.impl` file but IDE could not handle it well e.g. was finding errors in completely fine play! views.

Original source