Skip to content

Commit b61f8ee

Browse files
authored
bump byte-buddy version to solve compilation issue (#276)
* bump byte-buddy version to solve compilation issue Signed-off-by: zane-neo <[email protected]> * bump opensearch core to 2.13 version Signed-off-by: zane-neo <[email protected]> --------- Signed-off-by: zane-neo <[email protected]>
1 parent a7c8b44 commit b61f8ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import com.github.jengelman.gradle.plugins.shadow.ShadowPlugin
1212
buildscript {
1313
ext {
1414
opensearch_group = "org.opensearch"
15-
opensearch_version = System.getProperty("opensearch.version", "2.12.0-SNAPSHOT")
15+
opensearch_version = System.getProperty("opensearch.version", "2.13.0-SNAPSHOT")
1616
buildVersionQualifier = System.getProperty("build.version_qualifier", "")
1717
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
1818
version_tokens = opensearch_version.tokenize('-')
@@ -148,7 +148,7 @@ dependencies {
148148
testImplementation group: 'org.json', name: 'json', version: '20240205'
149149
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.10.0'
150150
testImplementation group: 'org.mockito', name: 'mockito-inline', version: '5.2.0'
151-
testImplementation("net.bytebuddy:byte-buddy:1.14.7")
151+
testImplementation("net.bytebuddy:byte-buddy:1.14.9")
152152
testImplementation("net.bytebuddy:byte-buddy-agent:1.14.7")
153153
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.1'
154154
testImplementation 'org.mockito:mockito-junit-jupiter:5.10.0'
@@ -569,4 +569,4 @@ task updateVersion {
569569
// Include the required files that needs to be updated with new Version
570570
ant.replaceregexp(file:'build.gradle', match: '"opensearch.version", "\\d.*"', replace: '"opensearch.version", "' + newVersion.tokenize('-')[0] + '-SNAPSHOT"', flags:'g', byline:true)
571571
}
572-
}
572+
}

0 commit comments

Comments
 (0)