Invalid key: eclipsify

I tried the todolist play framework application from my documentation. But when I try to create an eclipse project using the 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?

+4
source share
2 answers

Now eclipse or idea , not eclipsify or idealize .

+18
source

Add this snippet to the plugins.sbt file:

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

then use eclipse not eclipsify

+2
source

Source: https://habr.com/ru/post/1496522/


All Articles