File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -12,19 +12,18 @@ lazy val commonSettings = Seq(
12
12
scalaVersion := " 2.11.7" ,
13
13
crossScalaVersions := List (" 2.11.7" /* TODO, "2.12.0-M3"*/ ),
14
14
organization := " org.scala-lang.modules" ,
15
- version := " 0.6.0-SNAPSHOT" ,
16
- libraryDependencies += " org.scala-lang" % " scala-reflect" % scalaVersion.value,
17
- libraryDependencies += " org.scala-lang" % " scala-compiler" % scalaVersion.value
15
+ version := " 0.6.0-SNAPSHOT"
18
16
)
19
17
20
18
lazy val fnGen = (project in file(" fnGen" )).
21
19
settings(commonSettings : _* ).
22
20
settings(
23
- fork in run := true // Needed if you run this project directly
21
+ fork in run := true , // Needed if you run this project directly
22
+ libraryDependencies += " org.scala-lang" % " scala-reflect" % scalaVersion.value,
23
+ libraryDependencies += " org.scala-lang" % " scala-compiler" % scalaVersion.value
24
24
)
25
25
26
26
lazy val root = (project in file(" ." )).
27
- dependsOn(fnGen).
28
27
settings(scalaModuleSettings : _* ).
29
28
settings(commonSettings : _* ).
30
29
settings(
You can’t perform that action at this time.
0 commit comments