aboutsummaryrefslogtreecommitdiff
path: root/kamon-examples/kamon-newrelic-example/build.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'kamon-examples/kamon-newrelic-example/build.sbt')
-rw-r--r--kamon-examples/kamon-newrelic-example/build.sbt26
1 files changed, 26 insertions, 0 deletions
diff --git a/kamon-examples/kamon-newrelic-example/build.sbt b/kamon-examples/kamon-newrelic-example/build.sbt
new file mode 100644
index 00000000..89b1b3d3
--- /dev/null
+++ b/kamon-examples/kamon-newrelic-example/build.sbt
@@ -0,0 +1,26 @@
+import sbt._
+import sbt.Keys._
+
+import com.typesafe.sbt.SbtAspectj._
+
+aspectjSettings
+
+name := "kamon-newrelic-example"
+
+version := "1.0"
+
+scalaVersion := "2.10.2"
+
+resolvers += "Kamon repo" at "http://repo.kamon.io"
+
+resolvers += "spray repo" at "http://repo.spray.io"
+
+libraryDependencies += "kamon" %% "kamon-core" % "0.0.12"
+
+libraryDependencies += "kamon" %% "kamon-spray" % "0.0.12"
+
+libraryDependencies += "kamon" %% "kamon-newrelic" % "0.0.12"
+
+libraryDependencies += "io.spray" % "spray-can" % "1.2.0"
+
+javaOptions <++= AspectjKeys.weaverOptions in Aspectj