summaryrefslogtreecommitdiff
path: root/scalatex/build.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'scalatex/build.sbt')
-rw-r--r--scalatex/build.sbt38
1 files changed, 0 insertions, 38 deletions
diff --git a/scalatex/build.sbt b/scalatex/build.sbt
deleted file mode 100644
index 1d22b6a..0000000
--- a/scalatex/build.sbt
+++ /dev/null
@@ -1,38 +0,0 @@
-val sharedSettings = Seq(
- version := "0.1.0",
- organization := "com.lihaoyi",
- crossScalaVersions:= Seq("2.10.4", "2.11.2"),
- scalaVersion := "2.11.4",
- libraryDependencies += "com.lihaoyi" %% "acyclic" % "0.1.2" % "provided",
- addCompilerPlugin("com.lihaoyi" %% "acyclic" % "0.1.2"),
- autoCompilerPlugins := true
-)
-
-lazy val scalaParser = project.settings(sharedSettings:_*)
- .settings(
- name := "scala-parser-lite",
- libraryDependencies ++= Seq(
- "com.lihaoyi" %% "utest" % "0.2.4",
- "org.parboiled" %% "parboiled" % "2.0.1"
- ),
- testFrameworks += new TestFramework("utest.runner.JvmFramework")
- )
-lazy val api = project.settings(sharedSettings:_*)
- .dependsOn(scalaParser)
- .settings(
- name := "scalatex-api",
- libraryDependencies ++= Seq(
- "com.lihaoyi" %% "utest" % "0.2.4",
- "com.scalatags" %% "scalatags" % "0.4.2",
- "org.scala-lang" % "scala-reflect" % scalaVersion.value,
- "org.parboiled" %% "parboiled" % "2.0.1"
- ),
- testFrameworks += new TestFramework("utest.runner.JvmFramework")
- )
-
-lazy val scalatexSbtPlugin = project.settings(sharedSettings:_*)
- .settings(
- name := "scalatex-sbt-plugin",
- scalaVersion := "2.10.4",
- sbtPlugin := true
-) \ No newline at end of file