File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff 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" ,
Original file line number Diff line number Diff 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" )
You can’t perform that action at this time.
0 commit comments