summaryrefslogtreecommitdiff
path: root/test/benchmarks/build.sbt
diff options
context:
space:
mode:
authorPerformant Data LLC <performantdata@users.noreply.github.com>2016-03-25 21:44:50 -0700
committerPerformant Data LLC <performantdata@users.noreply.github.com>2016-05-03 11:46:58 -0700
commitb88933eb84f1f1f5215b0feb43f4ecfc12c8847d (patch)
tree030c8e3884a14180d4b6584aafd39a897197b379 /test/benchmarks/build.sbt
parente1b58ccafc598c06b8011e3e0f411f6e91b99353 (diff)
downloadscala-b88933eb84f1f1f5215b0feb43f4ecfc12c8847d.tar.gz
scala-b88933eb84f1f1f5215b0feb43f4ecfc12c8847d.tar.bz2
scala-b88933eb84f1f1f5215b0feb43f4ecfc12c8847d.zip
Benchmark the OpenHashMap memory usage.
Also add sbteclipse to the benchmark project.
Diffstat (limited to 'test/benchmarks/build.sbt')
-rw-r--r--test/benchmarks/build.sbt5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/benchmarks/build.sbt b/test/benchmarks/build.sbt
index 92a5fce177..2959e4986a 100644
--- a/test/benchmarks/build.sbt
+++ b/test/benchmarks/build.sbt
@@ -1,8 +1,11 @@
scalaHome := Some(file("../../build/pack"))
+scalaVersion := "2.11.8"
+scalacOptions += "-feature"
lazy val root = (project in file(".")).
enablePlugins(JmhPlugin).
settings(
name := "test-benchmarks",
- version := "0.0.1"
+ version := "0.0.1",
+ libraryDependencies += "org.openjdk.jol" % "jol-core" % "0.4"
)