aboutsummaryrefslogtreecommitdiff
path: root/kamon-examples/kamon-play-newrelic-example/project/Build.scala
diff options
context:
space:
mode:
Diffstat (limited to 'kamon-examples/kamon-play-newrelic-example/project/Build.scala')
-rw-r--r--kamon-examples/kamon-play-newrelic-example/project/Build.scala22
1 files changed, 22 insertions, 0 deletions
diff --git a/kamon-examples/kamon-play-newrelic-example/project/Build.scala b/kamon-examples/kamon-play-newrelic-example/project/Build.scala
new file mode 100644
index 00000000..fa240c39
--- /dev/null
+++ b/kamon-examples/kamon-play-newrelic-example/project/Build.scala
@@ -0,0 +1,22 @@
+import java.io.File
+import sbt._
+import Keys._
+import play.Project._
+
+object ApplicationBuild extends Build {
+
+ val appName = "Kamon-Play-NewRelic-Example"
+ val appVersion = "1.0-SNAPSHOT"
+
+ val appDependencies = Seq(
+ "kamon" % "kamon-core" % "0.0.14-SNAPSHOT",
+ "kamon" % "kamon-play" % "0.0.14-SNAPSHOT",
+ "kamon" % "kamon-newrelic" % "0.0.14-SNAPSHOT"
+ )
+
+
+ val main = play.Project(appName, appVersion, appDependencies).settings(
+ // For additionally resolving from the conventional ivy local home.
+ resolvers += Resolver.file("LocalIvy", file(Path.userHome +
+ File.separator + ".ivy2" + File.separator + "local"))(Resolver.ivyStylePatterns))
+}