1

I have added Scala nature to play project in eclipse by project->configure->add scala nature. If I call the eclipsify command then it converts the eclipse project nature back to Java.

I am using Play Framework version 2.04. I have updated the Scala IDE to latest version 2.10, but it did not help.

Can anyone help me on this?

ndeverge
  • 21,378
  • 4
  • 56
  • 85
Necip
  • 13
  • 1
  • 3

1 Answers1

1

Check that mainLang = SCALA in your project/Build.scala file:

...
val main = PlayProject(appName, appVersion, appDependencies, mainLang = SCALA).settings(
      // Add your own project settings here      
)
ndeverge
  • 21,378
  • 4
  • 56
  • 85