Skip to content

Commit a3e4313

Browse files
authored
Upgrade bytebuddy to latest version with Java 19 support (#85881) (#85915)
1 parent 3eb5c9d commit a3e4313

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build-tools-internal/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ dependencies {
258258
integTestImplementation("org.junit.jupiter:junit-jupiter") {
259259
because 'allows to write and run Jupiter tests'
260260
}
261-
integTestImplementation("net.bytebuddy:byte-buddy:1.11.0") {
261+
integTestImplementation("net.bytebuddy:byte-buddy:1.12.9") {
262262
because 'Generating dynamic mocks of internal libraries like JdkJarHell'
263263
}
264264
testRuntimeOnly("org.junit.vintage:junit-vintage-engine") {

client/test/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ dependencies {
2525
api "org.hamcrest:hamcrest:${versions.hamcrest}"
2626

2727
// mockito
28-
api 'org.mockito:mockito-core:4.0.0'
29-
api 'net.bytebuddy:byte-buddy:1.11.19'
28+
api 'org.mockito:mockito-core:4.4.0'
29+
api 'net.bytebuddy:byte-buddy:1.12.9'
3030
api 'org.objenesis:objenesis:3.2'
3131
}
3232

test/framework/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ dependencies {
2626
api "commons-codec:commons-codec:${versions.commonscodec}"
2727

2828
// mockito
29-
api 'org.mockito:mockito-core:4.0.0'
30-
api 'net.bytebuddy:byte-buddy:1.11.19'
29+
api 'org.mockito:mockito-core:4.4.0'
30+
api 'net.bytebuddy:byte-buddy:1.12.9'
3131
api 'org.objenesis:objenesis:3.2'
3232

3333
api "org.elasticsearch:mocksocket:${versions.mocksocket}"

0 commit comments

Comments
 (0)