Skip to content

Commit f38120d

Browse files
authored
byte-buddy 1.14.3 + asm 9.5 (#5011)
1 parent 68a05ad commit f38120d

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

buildSrc/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ dependencies {
3131
implementation(gradleApi())
3232
implementation(localGroovy())
3333

34-
implementation("net.bytebuddy", "byte-buddy-gradle-plugin", "1.12.22")
34+
implementation("net.bytebuddy", "byte-buddy-gradle-plugin", "1.14.3")
3535

3636
implementation("org.eclipse.aether", "aether-connector-basic", "1.1.0")
3737
implementation("org.eclipse.aether", "aether-transport-http", "1.1.0")
3838
implementation("org.apache.maven", "maven-aether-provider", "3.3.9")
3939

4040
implementation("com.google.guava", "guava", "20.0")
41-
implementation("org.ow2.asm", "asm", "9.0")
42-
implementation("org.ow2.asm", "asm-tree", "9.0")
41+
implementation("org.ow2.asm", "asm", "9.5")
42+
implementation("org.ow2.asm", "asm-tree", "9.5")
4343

4444
testImplementation("org.spockframework", "spock-core", "2.0-groovy-3.0")
4545
testImplementation("org.codehaus.groovy", "groovy-all", "3.0.10")

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.12.22' // just to build TestPlugin
26+
compileOnly group: 'net.bytebuddy', name: 'byte-buddy', version: '1.14.3' // just to build TestPlugin
2727
}
2828
2929
apply plugin: 'instrument'

gradle/dependencies.gradle

Lines changed: 2 additions & 2 deletions
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.12.22",
17+
bytebuddy : "1.14.3",
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",
@@ -34,7 +34,7 @@ final class CachedData {
3434
jmc : "8.1.0-SNAPSHOT",
3535
autoservice : "1.0-rc7",
3636
jplib : "0.29.0",
37-
asm : "9.4"
37+
asm : "9.5"
3838
]
3939

4040
static deps = [

0 commit comments

Comments
 (0)