File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -99,10 +99,16 @@ 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. force ' org.apache.commons:commons-beanutils:2.0.0'
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
+ }
103
110
}
104
111
105
-
106
112
jacocoTestReport {
107
113
reports {
108
114
xml. getRequired(). set(true )
You can’t perform that action at this time.
0 commit comments