Skip to content

Commit 6769cd2

Browse files
Update byte-buddy to v1.12.14 (#3134)
This includes adapting mock build.gradle to get plugin from MavenCentral. Co-authored-by: Simon Baslé <sbasle@vmware.com>
1 parent 827cc87 commit 6769cd2

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ baselinePerfExtra = "3.4.8"
66

77
# Other shared versions
88
asciidoctor = "3.3.2"
9-
bytebuddy = "1.12.12"
9+
bytebuddy = "1.12.14"
1010
jmh = "1.35"
1111
junit = "5.9.0"
1212
kotlin = "1.5.32"

reactor-tools/src/buildPluginTest/resources/mock-gradle/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,18 @@ buildscript {
2222
//the plugin feature only works with the -original jar !!
2323
//otherwise implemented Plugin interface is the shaded one
2424
classpath files("@AGENT@")
25+
//version 1.12.13 cannot be found on Gradle Plugin Repository, this syntax allows looking it up on MavenCentral
26+
classpath 'net.bytebuddy:byte-buddy-gradle-plugin:@BYTE_BUDDY_VERSION@'
2527
}
2628
}
2729

30+
2831
plugins {
29-
id "net.bytebuddy.byte-buddy-gradle-plugin" version "@BYTE_BUDDY_VERSION@"
3032
id 'java'
3133
}
3234

35+
apply plugin: "net.bytebuddy.byte-buddy-gradle-plugin"
36+
3337
repositories {
3438
mavenCentral()
3539
}

0 commit comments

Comments
 (0)