summaryrefslogtreecommitdiff
path: root/test/benchmarks/build.sbt
blob: fb05fb2c99f174022bd1287b02e4bc83e71c8f26 (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", "-opt: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"
  )