Skip to content

Commit

Permalink
Bump byte-buddy to 1.14.16 (#7077)
Browse files Browse the repository at this point in the history
* byte-buddy 1.14.16
* ASM 9.7
  • Loading branch information
mcculls committed Jun 3, 2024
1 parent dadbd53 commit f6c5dd3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ dependencies {
implementation(gradleApi())
implementation(localGroovy())

implementation("net.bytebuddy", "byte-buddy-gradle-plugin", "1.14.13")
implementation("net.bytebuddy", "byte-buddy-gradle-plugin", "1.14.16")

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

implementation("com.google.guava", "guava", "20.0")
implementation("org.ow2.asm", "asm", "9.6")
implementation("org.ow2.asm", "asm-tree", "9.6")
implementation("org.ow2.asm", "asm", "9.7")
implementation("org.ow2.asm", "asm-tree", "9.7")

testImplementation("org.spockframework", "spock-core", "2.2-groovy-3.0")
testImplementation("org.codehaus.groovy", "groovy-all", "3.0.17")
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/call-site-instrumentation-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies {
implementation("org.ow2.asm", "asm-tree", "9.0")
implementation("com.github.javaparser", "javaparser-symbol-solver-core", "3.24.4")

testImplementation("net.bytebuddy", "byte-buddy", "1.14.13")
testImplementation("net.bytebuddy", "byte-buddy", "1.14.16")
testImplementation("org.spockframework", "spock-core", "2.0-groovy-3.0")
testImplementation("org.objenesis", "objenesis", "3.0.1")
testImplementation("org.codehaus.groovy", "groovy-all", "3.0.17")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class CallSiteInstrumentationPluginTest extends Specification {
}
dependencies {
implementation group: 'net.bytebuddy', name: 'byte-buddy', version: '1.14.13'
implementation group: 'net.bytebuddy', name: 'byte-buddy', version: '1.14.16'
implementation group: 'com.google.auto.service', name: 'auto-service-annotations', version: '1.0-rc7'
}
'''
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/test/groovy/InstrumentPluginTest.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class InstrumentPluginTest extends Specification {
}
dependencies {
compileOnly group: 'net.bytebuddy', name: 'byte-buddy', version: '1.14.13' // just to build TestPlugin
compileOnly group: 'net.bytebuddy', name: 'byte-buddy', version: '1.14.16' // just to build TestPlugin
}
apply plugin: 'instrument'
Expand Down
4 changes: 2 additions & 2 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ final class CachedData {
groovy : groovyVer,
junit5 : "5.9.2",
logback : "1.2.3",
bytebuddy : "1.14.13",
bytebuddy : "1.14.16",
scala : "2.11.12", // Last version to support Java 7 (2.12+ require Java 8+)
scala210 : "2.10.7",
scala211 : "2.11.12",
Expand All @@ -34,7 +34,7 @@ final class CachedData {
jmc : "8.1.0",
autoservice : "1.0-rc7",
ddprof : "1.7.0",
asm : "9.6",
asm : "9.7",
cafe_crypto : "0.1.0",
lz4 : "1.7.1"
]
Expand Down

0 comments on commit f6c5dd3

Please sign in to comment.