summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorlihaoyi <haoyi.sg@gmail.com>2014-11-24 02:47:55 -0800
committerlihaoyi <haoyi.sg@gmail.com>2014-11-24 02:47:55 -0800
commitc6e266f8d0f8d8ce948ddf6b8539e28606e9b009 (patch)
tree609f9536b802fbf35ccd92596af64e2539e75a64 /build.sbt
parent198ec342cc210a66ce46efc6fd8d81d4d2943d95 (diff)
downloadhands-on-scala-js-c6e266f8d0f8d8ce948ddf6b8539e28606e9b009.tar.gz
hands-on-scala-js-c6e266f8d0f8d8ce948ddf6b8539e28606e9b009.tar.bz2
hands-on-scala-js-c6e266f8d0f8d8ce948ddf6b8539e28606e9b009.zip
moved scalaParser to its own subproject
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt11
1 files changed, 10 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index 895c2b9..7960ad0 100644
--- a/build.sbt
+++ b/build.sbt
@@ -2,7 +2,16 @@
import scala.scalajs.sbtplugin.ScalaJSPlugin._
import ScalaJSKeys._
-
+lazy val scalaParser = project.in(file("scalaParser")).settings(
+ scalaVersion := "2.11.4",
+ libraryDependencies ++= Seq(
+ "com.lihaoyi" %% "utest" % "0.2.4",
+ "com.lihaoyi" %% "acyclic" % "0.1.2" % "provided",
+ "org.parboiled" %% "parboiled" % "2.0.1"
+ ),
+ addCompilerPlugin("com.lihaoyi" %% "acyclic" % "0.1.2"),
+ testFrameworks += new TestFramework("utest.runner.JvmFramework")
+)
lazy val scalatexApi = project.in(file("scalatexApi"))
.settings(
scalaVersion := "2.11.4",