summaryrefslogtreecommitdiff
path: root/scalalib/src/test/resource/jawn/benchmark/build.sbt
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2017-12-31 22:56:45 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-01-01 10:10:19 -0800
commitcf5fb5fdfd477e0bb4ffa0e4fec3a8ec01bf5cf1 (patch)
treef3897463b6f55019f2bbd59ba5cff73cf0fb571f /scalalib/src/test/resource/jawn/benchmark/build.sbt
parent6996c01a391cb9aaa27268dd1f0cf0a1749ade21 (diff)
downloadmill-cf5fb5fdfd477e0bb4ffa0e4fec3a8ec01bf5cf1.tar.gz
mill-cf5fb5fdfd477e0bb4ffa0e4fec3a8ec01bf5cf1.tar.bz2
mill-cf5fb5fdfd477e0bb4ffa0e4fec3a8ec01bf5cf1.zip
Split Acyclic/Jawn/BetterFiles tests into their own `integration/` test suite.
Those tests now download a snapshot of the relevant git repo rather than vendoring the files, and use a bare `build.sc` instead of having the build object be included in the test classpath. Tests pass using `sbt integration/test`, but `mill integration.test` still doesn't work
Diffstat (limited to 'scalalib/src/test/resource/jawn/benchmark/build.sbt')
-rw-r--r--scalalib/src/test/resource/jawn/benchmark/build.sbt21
1 files changed, 0 insertions, 21 deletions
diff --git a/scalalib/src/test/resource/jawn/benchmark/build.sbt b/scalalib/src/test/resource/jawn/benchmark/build.sbt
deleted file mode 100644
index 7cb15b12..00000000
--- a/scalalib/src/test/resource/jawn/benchmark/build.sbt
+++ /dev/null
@@ -1,21 +0,0 @@
-name := "jawn-benchmarks"
-
-javaOptions in run += "-Xmx6G"
-
-libraryDependencies ++= Seq(
- "io.argonaut" %% "argonaut" % "6.2",
- "org.json4s" %% "json4s-native" % "3.5.2",
- "org.json4s" %% "json4s-jackson" % "3.5.2",
- "com.typesafe.play" %% "play-json" % "2.5.15",
- "com.rojoma" %% "rojoma-json" % "2.4.3",
- "com.rojoma" %% "rojoma-json-v3" % "3.7.2",
- "io.spray" %% "spray-json" % "1.3.3",
- "org.parboiled" %% "parboiled" % "2.1.4",
- "com.fasterxml.jackson.core" % "jackson-annotations" % "2.8.4",
- "com.fasterxml.jackson.core" % "jackson-core" % "2.8.4",
- "com.fasterxml.jackson.core" % "jackson-databind" % "2.8.4",
- "com.google.code.gson" % "gson" % "2.8.1"
-)
-
-// enable forking in run
-fork in run := true