File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -99,14 +99,6 @@ configurations.all {
99
99
resolutionStrategy. force ' com.google.protobuf:protobuf-java:3.25.5'
100
100
resolutionStrategy. force ' org.apache.commons:commons-compress:1.26.0'
101
101
resolutionStrategy. force ' software.amazon.awssdk:bom:2.30.18'
102
- resolutionStrategy. eachDependency { DependencyResolveDetails details ->
103
- if (details. requested. group == ' commons-beanutils' ) {
104
- details. useVersion ' 1.11.0'
105
- }
106
- if (details. requested. group == ' org.apache.commons' && details. requested. name == ' commons-beanutils2' ) {
107
- details. useVersion ' 2.0.0-M2'
108
- }
109
- }
110
102
}
111
103
112
104
jacocoTestReport {
Original file line number Diff line number Diff line change @@ -671,3 +671,12 @@ forbiddenPatterns {
671
671
exclude ' **/*.pdf'
672
672
exclude ' **/*.jpg'
673
673
}
674
+
675
+ configurations {
676
+ runtimeClasspath {
677
+ resolutionStrategy {
678
+ // CVE-48734: tribuo-clustering-kmeans:'4.2.1 causes a transitive dependency on beanutils:1.94
679
+ force ' commons-beanutils:commons-beanutils:1.11.0'
680
+ }
681
+ }
682
+ }
You can’t perform that action at this time.
0 commit comments