We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68a05ad commit f38120dCopy full SHA for f38120d
3 files changed
buildSrc/build.gradle.kts
@@ -31,15 +31,15 @@ dependencies {
31
implementation(gradleApi())
32
implementation(localGroovy())
33
34
- implementation("net.bytebuddy", "byte-buddy-gradle-plugin", "1.12.22")
+ implementation("net.bytebuddy", "byte-buddy-gradle-plugin", "1.14.3")
35
36
implementation("org.eclipse.aether", "aether-connector-basic", "1.1.0")
37
implementation("org.eclipse.aether", "aether-transport-http", "1.1.0")
38
implementation("org.apache.maven", "maven-aether-provider", "3.3.9")
39
40
implementation("com.google.guava", "guava", "20.0")
41
- implementation("org.ow2.asm", "asm", "9.0")
42
- implementation("org.ow2.asm", "asm-tree", "9.0")
+ implementation("org.ow2.asm", "asm", "9.5")
+ implementation("org.ow2.asm", "asm-tree", "9.5")
43
44
testImplementation("org.spockframework", "spock-core", "2.0-groovy-3.0")
45
testImplementation("org.codehaus.groovy", "groovy-all", "3.0.10")
buildSrc/src/test/groovy/InstrumentPluginTest.groovy
@@ -23,7 +23,7 @@ class InstrumentPluginTest extends Specification {
23
}
24
25
dependencies {
26
- compileOnly group: 'net.bytebuddy', name: 'byte-buddy', version: '1.12.22' // just to build TestPlugin
+ compileOnly group: 'net.bytebuddy', name: 'byte-buddy', version: '1.14.3' // just to build TestPlugin
27
28
29
apply plugin: 'instrument'
gradle/dependencies.gradle
@@ -14,7 +14,7 @@ final class CachedData {
14
groovy : groovyVer,
15
junit5 : "5.9.2",
16
logback : "1.2.3",
17
- bytebuddy : "1.12.22",
+ bytebuddy : "1.14.3",
18
scala : "2.11.12", // Last version to support Java 7 (2.12+ require Java 8+)
19
scala210 : "2.10.7",
20
scala211 : "2.11.12",
@@ -34,7 +34,7 @@ final class CachedData {
jmc : "8.1.0-SNAPSHOT",
autoservice : "1.0-rc7",
jplib : "0.29.0",
- asm : "9.4"
+ asm : "9.5"
]
static deps = [
0 commit comments