Skip to content

Commit 7bc36d8

Browse files
committed
Depend on custom compiler with scala/scala#4136 incorporated
1 parent 0db32d2 commit 7bc36d8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

project/Build.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ object DottyBuild extends Build {
3030

3131
// get reflect and xml onboard
3232
libraryDependencies ++= Seq("org.scala-lang" % "scala-reflect" % scalaVersion.value,
33-
"org.scala-lang.modules" %% "scala-xml" % "1.0.1"),
33+
"org.scala-lang.modules" %% "scala-xml" % "1.0.1",
34+
"me.d-d" % "scala-compiler" % "2.11.5-20141127-151222-084cc06425"),
3435

3536
// get junit onboard
3637
libraryDependencies += "com.novocode" % "junit-interface" % "0.11-RC1" % "test",
@@ -53,7 +54,7 @@ object DottyBuild extends Build {
5354

5455
// http://grokbase.com/t/gg/simple-build-tool/135ke5y90p/sbt-setting-jvm-boot-paramaters-for-scala
5556
javaOptions <++= (managedClasspath in Runtime, packageBin in Compile) map { (attList, bin) =>
56-
// put the Scala {library, reflect, compiler} in the classpath
57+
// put the Scala {library, reflect} in the classpath
5758
val path = for {
5859
file <- attList.map(_.data)
5960
path = file.getAbsolutePath

0 commit comments

Comments
 (0)