Skip to content

Commit acc3c12

Browse files
authored
Merge pull request #897 from SimunKaracic/889-shade-dependencies
shade kamon-annotation dependencies
2 parents 4d38acf + 4aa5868 commit acc3c12

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

build.sbt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,11 +356,13 @@ lazy val `kamon-annotation` = (project in file("instrumentation/kamon-annotation
356356
assemblyShadeRules in assembly := Seq(
357357
ShadeRule.rename("javax.el.**" -> "kamon.lib.@0").inAll,
358358
ShadeRule.rename("com.sun.el.**" -> "kamon.lib.@0").inAll,
359-
ShadeRule.rename("com.github.ben-manes.**" -> "kamon.lib.@0").inAll,
359+
ShadeRule.rename("com.github.benmanes.**" -> "kamon.lib.@0").inAll,
360+
ShadeRule.rename("com.google.errorprone.**" -> "kamon.lib.@0").inAll,
361+
ShadeRule.rename("org.checkerframework.**" -> "kamon.lib.@0").inAll,
360362
),
361363
libraryDependencies ++= Seq(
362364
kanelaAgent % "provided",
363-
"com.github.ben-manes.caffeine" % "caffeine" % "2.8.5" % "provided,shaded", // provided? no?
365+
"com.github.ben-manes.caffeine" % "caffeine" % "2.8.5" % "provided,shaded",
364366
"org.glassfish" % "javax.el" % "3.0.1-b11" % "provided,shaded",
365367
scalatest % "test",
366368
logbackClassic % "test",

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ object BaseProject extends AutoPlugin {
3535
val hdrHistogram = "org.hdrhistogram" % "HdrHistogram" % "2.1.10"
3636
val okHttp = "com.squareup.okhttp3" % "okhttp" % "3.14.7"
3737
val okHttpMockServer = "com.squareup.okhttp3" % "mockwebserver" % "3.10.0"
38-
val oshiCore = "com.github.oshi" % "oshi-core" % "5.2.5"
38+
val oshiCore = "com.github.oshi" % "oshi-core" % "5.3.4"
3939

4040

4141
val kanelaAgentVersion = settingKey[String]("Kanela Agent version")

0 commit comments

Comments
 (0)