-
Notifications
You must be signed in to change notification settings - Fork 10
Setting up IntelliJ
vernunft edited this page Sep 24, 2014
·
8 revisions
The Scala plugin for IntelliJ IDEA needs to be installed first (plug-in manager of IntelliJ)
The tool sbt
(scala build tool) can manage, build and test scala projects.
With the plugin sbt-idea
it can also create project files for working with IntelliJ IDEA.
- Install
sbt
(e.g. bysudo yum install sbt
) - Install the sbt idea plugin:
- Add the following line to
~/.sbt/0.13/plugins/build.sbt
:addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.6.0")
- Add the following line to
- Run
sbt gen-idea
in a new directory/in the cloned repo directory (that will become the project root directory)