Skip to content

Commit 054a9d5

Browse files
authored
byte-buddy 1.17.7 (#9692)
1 parent 1772b5b commit 054a9d5

File tree

5 files changed

+6
-9
lines changed

5 files changed

+6
-9
lines changed

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ dependencies {
5353
implementation(gradleApi())
5454
implementation(localGroovy())
5555

56-
implementation("net.bytebuddy", "byte-buddy-gradle-plugin", "1.17.5")
56+
implementation("net.bytebuddy", "byte-buddy-gradle-plugin", "1.17.7")
5757

5858
implementation("org.eclipse.aether", "aether-connector-basic", "1.1.0")
5959
implementation("org.eclipse.aether", "aether-transport-http", "1.1.0")

buildSrc/call-site-instrumentation-plugin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ dependencies {
3636
implementation(libs.asm.tree)
3737
implementation("com.github.javaparser", "javaparser-symbol-solver-core", "3.24.4")
3838

39-
testImplementation("net.bytebuddy", "byte-buddy", "1.17.5")
39+
testImplementation(libs.bytebuddy)
4040
testImplementation(libs.spock.core)
4141
testImplementation("org.objenesis", "objenesis", "3.0.1")
4242
testImplementation(libs.groovy)

buildSrc/src/test/groovy/CallSiteInstrumentationPluginTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class CallSiteInstrumentationPluginTest extends Specification {
2727
}
2828
2929
dependencies {
30-
implementation group: 'net.bytebuddy', name: 'byte-buddy', version: '1.17.5'
30+
implementation group: 'net.bytebuddy', name: 'byte-buddy', version: '1.17.7'
3131
implementation group: 'com.google.auto.service', name: 'auto-service-annotations', version: '1.1.1'
3232
}
3333
'''

buildSrc/src/test/groovy/InstrumentPluginTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class InstrumentPluginTest extends Specification {
2323
}
2424
2525
dependencies {
26-
compileOnly group: 'net.bytebuddy', name: 'byte-buddy', version: '1.17.5' // just to build TestPlugin
26+
compileOnly group: 'net.bytebuddy', name: 'byte-buddy', version: '1.17.7' // just to build TestPlugin
2727
}
2828
2929
apply plugin: 'instrument'

gradle/libs.versions.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ groovy = "3.0.24"
1111
junit5 = "5.12.2"
1212
junit-platform = "1.12.2"
1313
logback = "1.2.13"
14-
bytebuddy = "1.17.5"
14+
bytebuddy = "1.17.7"
1515
scala = "2.11.12" # Last version to support Java 7 (2.12+ require Java 8+)
1616
scala211 = "2.11.12"
1717
scala212 = "2.12.18"
@@ -77,9 +77,6 @@ junit-platform-launcher = { module = "org.junit.platform:junit-platform-launcher
7777

7878
mokito-core = { module = "org.mockito:mockito-core", version.ref = "mockito" }
7979
mokito-junit-jupiter = { module = "org.mockito:mockito-junit-jupiter", version.ref = "mockito" }
80-
# needed for Java 21 support
81-
byte-buddy = { module = "net.bytebuddy:byte-buddy", version.ref = "bytebuddy" }
82-
byte-buddy-agent = { module = "net.bytebuddy:byte-buddy-agent", version.ref = "bytebuddy" }
8380

8481
testcontainers = { module = "org.testcontainers:testcontainers", version.ref = "testcontainers" }
8582
testcontainers-localstack = { module = "org.testcontainers:localstack", version.ref = "testcontainers" }
@@ -111,7 +108,7 @@ cafe-crypto = ["cafe-crypto-curve25519", "cafe-crypto-ed25519"]
111108
spock = ["spock-core", "spock-junit4", "objenesis"]
112109
junit5 = ["junit-jupiter", "junit-jupiter-params"]
113110
junit-platform = ["junit-platform-launcher"]
114-
mockito = ["mokito-core", "mokito-junit-jupiter", "byte-buddy", "byte-buddy-agent"]
111+
mockito = ["mokito-core", "mokito-junit-jupiter", "bytebuddy", "bytebuddyagent"]
115112
test-logging = ["logback-classic", "log4j-over-slf4j", "jcl-over-slf4j", "jul-to-slf4j"]
116113

117114
jmc = ["jmc-common", "jmc-flightrecorder"]

0 commit comments

Comments
 (0)