summaryrefslogtreecommitdiff
path: root/test/benchmarks/build.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'test/benchmarks/build.sbt')
-rw-r--r--test/benchmarks/build.sbt11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/benchmarks/build.sbt b/test/benchmarks/build.sbt
new file mode 100644
index 0000000000..4806ecdde8
--- /dev/null
+++ b/test/benchmarks/build.sbt
@@ -0,0 +1,11 @@
+scalaHome := Some(file("../../build/pack"))
+scalaVersion := "2.11.8"
+scalacOptions ++= Seq("-feature", "-Yopt:l:classpath")
+
+lazy val root = (project in file(".")).
+ enablePlugins(JmhPlugin).
+ settings(
+ name := "test-benchmarks",
+ version := "0.0.1",
+ libraryDependencies += "org.openjdk.jol" % "jol-core" % "0.4"
+ )