aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2017-07-19 14:50:07 +0200
committerIvan Topolnjak <ivantopo@gmail.com>2017-07-19 14:50:50 +0200
commit5ee1b830aff118dc264399ddfb92c1f2b1f51a85 (patch)
treea3e50acedc5dc9ccf1869b39cf8bf9f6c554b4b9 /build.sbt
parentca6659c419e434b1b8caa6e9551420aad2230e77 (diff)
downloadKamon-5ee1b830aff118dc264399ddfb92c1f2b1f51a85.tar.gz
Kamon-5ee1b830aff118dc264399ddfb92c1f2b1f51a85.tar.bz2
Kamon-5ee1b830aff118dc264399ddfb92c1f2b1f51a85.zip
remove the kamon-opentracing module
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt16
1 files changed, 1 insertions, 15 deletions
diff --git a/build.sbt b/build.sbt
index 0181b883..93331116 100644
--- a/build.sbt
+++ b/build.sbt
@@ -20,7 +20,7 @@ crossScalaVersions := Seq("2.12.2", "2.11.8", "2.10.6")
lazy val kamon = (project in file("."))
.settings(moduleName := "kamon")
.settings(noPublishing: _*)
- .aggregate(core, opentracing)
+ .aggregate(core)
lazy val core = (project in file("kamon-core"))
@@ -41,20 +41,6 @@ lazy val core = (project in file("kamon-core"))
)
)
-lazy val opentracing = (project in file("kamon-opentracing"))
- .settings(moduleName := "kamon-opentracing")
- .dependsOn(core)
- .settings(
- isSnapshot := true,
- scalaVersion := "2.11.8",
- javacOptions += "-XDignore.symbol.file",
- resolvers += Resolver.mavenLocal,
- libraryDependencies ++= Seq(
- "io.opentracing" % "opentracing-api" % "0.30.0",
- "io.opentracing" % "opentracing-util" % "0.30.0",
- "org.scalatest" %% "scalatest" % "3.0.1" % "test"
- )
- )
//
//lazy val testkit = (project in file("kamon-testkit"))
// .settings(moduleName := "kamon-testkit", resolvers += Resolver.mavenLocal)