aboutsummaryrefslogtreecommitdiff
path: root/project/Build.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2014-10-14 14:49:08 +0200
committerGuillaume Martres <smarter@ubuntu.com>2015-02-17 14:01:30 +0100
commit778072d5bd7763d7c5181e405db84e341be27ca3 (patch)
tree56b67b211b2c302ee8ae77343ebd70053675c908 /project/Build.scala
parent2e72811fb1cedb94c7967acf96c92172f010a20b (diff)
downloaddotty-778072d5bd7763d7c5181e405db84e341be27ca3.tar.gz
dotty-778072d5bd7763d7c5181e405db84e341be27ca3.tar.bz2
dotty-778072d5bd7763d7c5181e405db84e341be27ca3.zip
Add dotty repl & type stealer
Dotty requires a mangled bootclasspath to start. It means that `console` mode of sbt doesn't work for us. At least I wasn't able to make sbt fork in console, so instead I've added a Scala-repl into dotty itself :-) It would be good to make it use dotty one day when we have a backend :-)
Diffstat (limited to 'project/Build.scala')
-rw-r--r--project/Build.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/project/Build.scala b/project/Build.scala
index f7053573f..e6725bb26 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -31,7 +31,8 @@ object DottyBuild extends Build {
// get reflect and xml onboard
libraryDependencies ++= Seq("org.scala-lang" % "scala-reflect" % scalaVersion.value,
"org.scala-lang.modules" %% "scala-xml" % "1.0.1",
- "me.d-d" % "scala-compiler" % "2.11.5-20141212-151631-beaa78b033"),
+ "me.d-d" % "scala-compiler" % "2.11.5-20141212-151631-beaa78b033",
+ "jline" % "jline" % "2.12"),
// get junit onboard
libraryDependencies += "com.novocode" % "junit-interface" % "0.11-RC1" % "test",