Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update byte-buddy to v1.12.14 #3134

Merged
merged 3 commits into from
Aug 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ baselinePerfExtra = "3.4.8"

# Other shared versions
asciidoctor = "3.3.2"
bytebuddy = "1.12.12"
bytebuddy = "1.12.14"
jmh = "1.35"
junit = "5.8.2"
kotlin = "1.5.32"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,18 @@ buildscript {
//the plugin feature only works with the -original jar !!
//otherwise implemented Plugin interface is the shaded one
classpath files("@AGENT@")
//version 1.12.13 cannot be found on Gradle Plugin Repository, this syntax allows looking it up on MavenCentral
classpath 'net.bytebuddy:byte-buddy-gradle-plugin:@BYTE_BUDDY_VERSION@'
}
}


plugins {
id "net.bytebuddy.byte-buddy-gradle-plugin" version "@BYTE_BUDDY_VERSION@"
id 'java'
}

apply plugin: "net.bytebuddy.byte-buddy-gradle-plugin"

repositories {
mavenCentral()
}
Expand Down