Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ dependencies {
implementation(gradleApi())
implementation(localGroovy())

implementation("net.bytebuddy", "byte-buddy-gradle-plugin", "1.17.5")
implementation("net.bytebuddy", "byte-buddy-gradle-plugin", "1.17.7")

implementation("org.eclipse.aether", "aether-connector-basic", "1.1.0")
implementation("org.eclipse.aether", "aether-transport-http", "1.1.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies {
implementation(libs.asm.tree)
implementation("com.github.javaparser", "javaparser-symbol-solver-core", "3.24.4")

testImplementation("net.bytebuddy", "byte-buddy", "1.17.5")
testImplementation("net.bytebuddy", "byte-buddy", "1.17.7")
testImplementation(libs.spock.core)
testImplementation("org.objenesis", "objenesis", "3.0.1")
testImplementation(libs.groovy)
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.17.5'
implementation group: 'net.bytebuddy', name: 'byte-buddy', version: '1.17.7'
implementation group: 'com.google.auto.service', name: 'auto-service-annotations', version: '1.1.1'
}
'''
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.17.5' // just to build TestPlugin
compileOnly group: 'net.bytebuddy', name: 'byte-buddy', version: '1.17.7' // just to build TestPlugin
}

apply plugin: 'instrument'
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ groovy = "3.0.24"
junit5 = "5.12.2"
junit-platform = "1.12.2"
logback = "1.2.13"
bytebuddy = "1.17.5"
bytebuddy = "1.17.7"
scala = "2.11.12" # Last version to support Java 7 (2.12+ require Java 8+)
scala211 = "2.11.12"
scala212 = "2.12.18"
Expand Down
Loading