File tree 3 files changed +9
-1
lines changed
shaded-protobuf-java-util
3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,10 @@ dependencies {
46
46
api(" com.google.protobuf:protobuf-java-util" )
47
47
// convert yaml to json, since java protobuf impl supports only json
48
48
implementation(" com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.11.3" )
49
+ // fix vulnerability
50
+ constraints {
51
+ api(" com.google.code.gson:gson:2.8.9" )
52
+ }
49
53
50
54
testImplementation(" io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:${versions[" opentelemetry" ]} -alpha" )
51
55
testImplementation(" io.opentelemetry:opentelemetry-sdk:${versions[" opentelemetry" ]} " )
Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ dependencies {
8
8
exclude(" com.google.protobuf" , " protobuf-java" )
9
9
exclude(" com.google.guava" , " guava" )
10
10
}
11
+ // fix vulnerability
12
+ constraints {
13
+ implementation(" com.google.code.gson:gson:2.8.9" )
14
+ }
11
15
}
12
16
13
17
tasks.shadowJar {
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ dependencies {
16
16
implementation(project(" :javaagent-core" ))
17
17
implementation(project(" :filter-api" ))
18
18
19
- implementation(" ch.qos.logback:logback-classic:1.2.3 " )
19
+ implementation(" ch.qos.logback:logback-classic:1.2.7 " )
20
20
implementation(" org.slf4j:slf4j-api:${versions[" slf4j" ]} " )
21
21
}
22
22
You can’t perform that action at this time.
0 commit comments