aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt13
1 files changed, 12 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index 3d77510f..d553d3ed 100644
--- a/build.sbt
+++ b/build.sbt
@@ -17,7 +17,7 @@
lazy val kamon = (project in file("."))
.settings(moduleName := "kamon")
.settings(noPublishing: _*)
- .aggregate(core, testkit, coreTests)
+ .aggregate(core, testkit, coreTests, coreBench)
val commonSettings = Seq(
scalaVersion := "2.12.4",
@@ -74,3 +74,14 @@ lazy val coreTests = (project in file("kamon-core-tests"))
"ch.qos.logback" % "logback-classic" % "1.2.2" % "test"
)
).dependsOn(testkit)
+
+
+lazy val coreBench = (project in file("kamon-core-bench"))
+ .enablePlugins(JmhPlugin)
+ .settings(
+ moduleName := "kamon-core-bench",
+ resolvers += Resolver.mavenLocal,
+ fork in Test := true)
+ .settings(noPublishing: _*)
+ .settings(commonSettings: _*)
+ .dependsOn(core) \ No newline at end of file