Skip to content

Commit ee09703

Browse files
Update byte-buddy to 1.14.13
1 parent e49f1a1 commit ee09703

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
@@ -35,7 +35,7 @@ dependencies {
3535
implementation(gradleApi())
3636
implementation(localGroovy())
3737

38-
implementation("net.bytebuddy", "byte-buddy-gradle-plugin", "1.14.12")
38+
implementation("net.bytebuddy", "byte-buddy-gradle-plugin", "1.14.13")
3939

4040
implementation("org.eclipse.aether", "aether-connector-basic", "1.1.0")
4141
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.12")
41+
testImplementation("net.bytebuddy", "byte-buddy", "1.14.13")
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.12'
30+
implementation group: 'net.bytebuddy', name: 'byte-buddy', version: '1.14.13'
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.12' // just to build TestPlugin
26+
compileOnly group: 'net.bytebuddy', name: 'byte-buddy', version: '1.14.13' // just to build TestPlugin
2727
}
2828
2929
apply plugin: 'instrument'

gradle/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ final class CachedData {
1414
groovy : groovyVer,
1515
junit5 : "5.9.2",
1616
logback : "1.2.3",
17-
bytebuddy : "1.14.12",
17+
bytebuddy : "1.14.13",
1818
scala : "2.11.12", // Last version to support Java 7 (2.12+ require Java 8+)
1919
scala210 : "2.10.7",
2020
scala211 : "2.11.12",

0 commit comments

Comments
 (0)