Skip to content

Commit b6e86f3

Browse files
committed
Added support for IDEA projects
1 parent 5a97eeb commit b6e86f3

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

.gitignore

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
1-
/bin
2-
/build
3-
target
4-
51
.classpath
62
.project
7-
.settings/
83
.scala_dependencies
9-
.gradle/
10-
11-
.DS_Store?
124

13-
/.idea/
145
/project/boot/
156
/project/plugins/project
7+
target/
168
lib_managed/
179
src_managed/
10+
11+
.idea/
1812
*.iml

project/build/Project.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import sbt._
22
import de.element34.sbteclipsify._
33
import Process._
44

5-
class Project(info: ProjectInfo) extends DefaultWebProject(info) with AkkaProject with Eclipsify {
5+
class Project(info: ProjectInfo) extends DefaultWebProject(info) with AkkaProject with Eclipsify with IdeaProject {
66

77
// -------------------------------------------------------------------------------------------------------------------
88
// All repositories *must* go here! See ModuleConfigurations below.

project/plugins/Plugins.scala

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,7 @@ class Plugins(info: ProjectInfo) extends PluginDefinition(info) {
2323
// -------------------------------------------------------------------------------------------------------------------
2424
val akkaPlugin = "se.scalablesolutions.akka" % "akka-sbt-plugin" % "1.0"
2525
val eclipse = "de.element34" % "sbt-eclipsify" % "0.7.0"
26+
val sbtIdeaRepo = "sbt-idea-repo" at "http://mpeltonen.github.com/maven/"
27+
val sbtIdea = "com.github.mpeltonen" % "sbt-idea-plugin" % "0.4.0"
2628

2729
}

0 commit comments

Comments
 (0)