I have downloaded typesafe activator and have followed following steps
activator new HelloWorld play-java
cd HelloWorld
activator build
activator eclipse
I got an error
[warn] The global sbt directory is now versioned and is located at /Users/abhi/.sbt/0.13.
[warn] You are seeing this warning because there is global configuration in /Users/abhi/.sbt but not in /Users/abhi/.sbt/0.13.
[warn] The global sbt directory may be changed via the sbt.global.base system property.
[info] Loading project definition from /Users/abhi/JavaProjects/HelloWorld/project
[warn] The global sbt directory is now versioned and is located at /Users/abhi/.sbt/0.13.
[warn] You are seeing this warning because there is global configuration in /Users/abhi/.sbt but not in /Users/abhi/.sbt/0.13.
[warn] The global sbt directory may be changed via the sbt.global.base system property.
[info] Set current project to HelloWorld (in build file:/Users/abhi/JavaProjects/HelloWorld/)
[error] Not a valid command: eclipse (similar: help, alias)
[error] Not a valid project ID: eclipse
[error] Expected ':' (if selecting a configuration)
[error] Not a valid key: eclipse (similar: deliver, licenses, clean)
[error] eclipse
[error] ^
I googled for this problem and found
How to use sbt-eclipse to create Eclipse project files of a project?
I can't figure out the answers in these threads. I did create a directory
cd ~/.sbt
mkdir plugins
touch plugins.sbt
But I still get this error. Does anyone have a "concise" solution which works?