LoginSignup
15
13

More than 5 years have passed since last update.

activator eclipse で [error] Not a valid command: eclipse (similar: help, alias) の時の対処法

Last updated at Posted at 2015-08-11

playコンソールでeclipseしようとするとエラーでた

[scalaTest] $ eclipse
[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]        ^

対処

project/plugins.sbtの最終行にaddSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.5.0")を追記

vim project/plugins.sbt
##略##
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.5.0")

これで解決。

15
13
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
15
13