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 {
9999 resolutionStrategy. force ' com.google.protobuf:protobuf-java:3.25.5'
100100 resolutionStrategy. force ' org.apache.commons:commons-compress:1.26.0'
101101 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+ }
103110}
104111
105-
106112jacocoTestReport {
107113 reports {
108114 xml. getRequired(). set(true )
You can’t perform that action at this time.
0 commit comments