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