Skip to content

Commit 9dea864

Browse files
committed
Bump byte-buddy to 1.14.18
1 parent 93ecbc6 commit 9dea864

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencies {
3232
implementation(gradleApi())
3333
implementation(localGroovy())
3434

35-
implementation("net.bytebuddy", "byte-buddy-gradle-plugin", "1.14.16")
35+
implementation("net.bytebuddy", "byte-buddy-gradle-plugin", "1.14.18")
3636

3737
implementation("org.eclipse.aether", "aether-connector-basic", "1.1.0")
3838
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
@@ -38,7 +38,7 @@ dependencies {
3838
implementation("org.ow2.asm", "asm-tree", "9.0")
3939
implementation("com.github.javaparser", "javaparser-symbol-solver-core", "3.24.4")
4040

41-
testImplementation("net.bytebuddy", "byte-buddy", "1.14.16")
41+
testImplementation("net.bytebuddy", "byte-buddy", "1.14.18")
4242
testImplementation("org.spockframework", "spock-core", "2.0-groovy-3.0")
4343
testImplementation("org.objenesis", "objenesis", "3.0.1")
4444
testImplementation("org.codehaus.groovy", "groovy-all", "3.0.17")

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.14.16'
30+
implementation group: 'net.bytebuddy', name: 'byte-buddy', version: '1.14.18'
3131
implementation group: 'com.google.auto.service', name: 'auto-service-annotations', version: '1.0-rc7'
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.14.16' // just to build TestPlugin
26+
compileOnly group: 'net.bytebuddy', name: 'byte-buddy', version: '1.14.18' // 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
@@ -10,7 +10,7 @@ spock = "2.2-groovy-3.0"
1010
groovy = "3.0.17"
1111
junit5 = "5.9.2"
1212
logback = "1.2.3"
13-
bytebuddy = "1.14.16"
13+
bytebuddy = "1.14.18"
1414
scala = "2.11.12" # Last version to support Java 7 (2.12+ require Java 8+)
1515
scala211 = "2.11.12"
1616
scala212 = "2.12.18"

0 commit comments

Comments
 (0)