Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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 @@ -90,7 +90,7 @@ repositories {
dependencies {
implementation(gradleApi())

implementation("net.bytebuddy", "byte-buddy-gradle-plugin", "1.18.10")
implementation("net.bytebuddy", "byte-buddy-gradle-plugin", "1.18.12")

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: we can use catalog here too: libs.versions.byte.buddy.get()


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 @@ -30,7 +30,7 @@ class CallSiteInstrumentationPluginTest : GradleFixture() {
}
dependencies {
implementation("net.bytebuddy:byte-buddy:1.18.10")
implementation("net.bytebuddy:byte-buddy:1.18.12")
implementation("com.google.auto.service:auto-service-annotations:1.1.1")
}
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class BuildTimeInstrumentationPluginTest : GradleFixture() {
}

dependencies {
compileOnly("net.bytebuddy:byte-buddy:1.18.10") // just to build TestPlugin
compileOnly("net.bytebuddy:byte-buddy:1.18.12") // just to build TestPlugin
}

buildTimeInstrumentation.plugins.set(listOf("TestPlugin"))
Expand Down Expand Up @@ -71,7 +71,7 @@ class BuildTimeInstrumentationPluginTest : GradleFixture() {
}

dependencies {
compileOnly("net.bytebuddy:byte-buddy:1.18.10")
compileOnly("net.bytebuddy:byte-buddy:1.18.12")
}

buildTimeInstrumentation {
Expand Down Expand Up @@ -112,7 +112,7 @@ class BuildTimeInstrumentationPluginTest : GradleFixture() {
}

dependencies {
compileOnly("net.bytebuddy:byte-buddy:1.18.10")
compileOnly("net.bytebuddy:byte-buddy:1.18.12")
}

buildTimeInstrumentation {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ scala33 = "3.3.0"
# Bytecode manipulations & codegen
autoservice = "1.1.1"
asm = "9.10.1"
byte-buddy = "1.18.10"
byte-buddy = "1.18.12"
Comment thread
sarahchen6 marked this conversation as resolved.
instrument-java = "0.0.4"

# Benchmarks
Expand Down
Loading