66buildscript {
77
88 ext {
9- opensearch_version = System . getProperty(" opensearch.version" , " 3.1 .0-SNAPSHOT" )
9+ opensearch_version = System . getProperty(" opensearch.version" , " 3.2 .0-SNAPSHOT" )
1010 isSnapshot = " true" == System . getProperty(" build.snapshot" , " true" )
1111 buildVersionQualifier = System . getProperty(" build.version_qualifier" , " " )
1212
@@ -48,8 +48,8 @@ buildscript {
4848
4949plugins {
5050 id ' java'
51- id ' com.netflix.nebula.ospackage' version " 11.6 .0"
52- id ' com.github.spotbugs' version ' 6.0.7 '
51+ id ' com.netflix.nebula.ospackage' version " 12.0 .0"
52+ id ' com.github.spotbugs' version ' 6.2.2 '
5353 id ' jacoco'
5454 id ' com.diffplug.spotless' version ' 6.25.0'
5555 id ' checkstyle'
@@ -59,7 +59,7 @@ plugins {
5959}
6060
6161checkstyle {
62- toolVersion = ' 10.12 .1'
62+ toolVersion = ' 10.26 .1'
6363 configFile file(" checkstyle/checkstyle.xml" )
6464}
6565
9191 rcaProjectDir = System . getProperty(" performance-analyzer-rca.path" , " ../performance-analyzer-rca" )
9292}
9393
94- // Fix for CVE-2025-27820
95- configurations. all {
96- resolutionStrategy {
97- force(" org.apache.httpcomponents.client5:httpclient5:5.4.4" )
98- force(" org.apache.httpcomponents:httpcore:5.3.4" )
99- force(" org.apache.httpcomponents.core5:httpcore5-h2:5.3.4" )
100- force(" org.apache.httpcomponents.core5:httpcore5:5.3.4" )
101-
102-
103- // Alternatively, you can use this approach
104- eachDependency { DependencyResolveDetails details ->
105- if (details. requested. group == ' org.apache.httpcomponents.client5' &&
106- details. requested. name == ' httpclient5' ) {
107- details. useVersion " ${ versions.httpclient5} "
108- }
109- }
110- }
111- }
11294
11395allprojects {
11496 group = " org.opensearch"
0 commit comments