Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Not a valid key: eclipsify

I'm trying out the todolist play framework application from their documentation. But when I try to create the eclipse project, using eclipsify command, I get this error

[todolist] $ eclipsify
[error] Not a valid command: eclipsify (similar: eclipse)
[error] Expected '/'
[error] Expected ':'
[error] Not a valid key: eclipsify
[error] eclipsify
[error]          ^

What could be wrong?

like image 954
Santhosh Avatar asked Dec 01 '22 03:12

Santhosh


2 Answers

It is now eclipse or idea, not eclipsify or idealize.

like image 106
Leo Avatar answered Dec 10 '22 21:12

Leo


Append this piece to your plugins.sbt file:

addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "4.0.0")

then use eclipse not eclipsify

like image 30
Jayati Avatar answered Dec 10 '22 22:12

Jayati