We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aca5f12 commit 6b2c652Copy full SHA for 6b2c652
javaagent/build.gradle.kts
@@ -58,6 +58,9 @@ tasks {
58
// exclude because it would be shaded twice and the META-INF/services/ would be io.opentelemetry.javaagent.shaded.io.grpc
59
exclude("inst/META-INF/services/io.grpc*")
60
}
61
+ // Fix CVE-2024-7254, opentelemetry-javaagent brings in io.prometheus.metrics which uses deps of high vulnerability protobuf-java version
62
+ // This was fixed in 2.x.x versions of opentelemetry-javaagent(which needs us to upgrade from 1.33.0)
63
+ exclude("inst/io/prometheus/metrics/shaded/com_google_protobuf_3_21_7/**")
64
exclude("**/module-info.class")
65
manifest {
66
attributes.put("Implementation-Title", "javaagent")
0 commit comments