Skip to content

Commit 3a84fd7

Browse files
committed
byte-buddy 1.17.7
1 parent 2aad71f commit 3a84fd7

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
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("net.bytebuddy", "byte-buddy", "1.17.7")
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: 1 addition & 1 deletion
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"

0 commit comments

Comments
 (0)