summaryrefslogtreecommitdiff
path: root/test/benchmarks/build.sbt
blob: 31cee701ad6141cea0f50b0e39fd285eeb5aeae6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
scalaHome := Some(file("../../build/pack"))
scalaVersion := "2.12.0-dev"
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"
  )