I'm new to the sbt
and scala
. I've installed sbt
and sbt-idea
. How can I create an idea project now ?
Asked
Active
Viewed 866 times
0

Shashika
- 1,606
- 6
- 28
- 47
-
1RTFM? https://github.com/mpeltonen/sbt-idea#basic-project. BTW Scala plugin for IntelliJ IDEA 13 has built-in sbt support. – Sergey Passichenko Dec 06 '13 at 06:14
-
I've done those steps. but gen-idea command is not valid yet. why is that? – Shashika Dec 06 '13 at 06:55
1 Answers
3
I personally got it work fairly painlessly by following the documentation: add the following lines to your project's ./project/plugins.sbt
:
resolvers += "Sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/"
addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.6.0-SNAPSHOT")
Reload sbt
, the gen-idea
command should now be available.

Nicolas Rinaudo
- 6,068
- 28
- 41