You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/10/16 07:26:45 UTC

[camel] 01/01: CAMEL-19992: Upgrade bytebuddy that can support Java 21

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch bb
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 3f30b5d387747f3b1a183d0baebcca21d84ff1ae
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Oct 16 09:26:31 2023 +0200

    CAMEL-19992: Upgrade bytebuddy that can support Java 21
---
 parent/pom.xml | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index ff34406c88a..c45d4e2a037 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -76,6 +76,7 @@
         <box-java-sdk-version>4.6.0</box-java-sdk-version>
         <braintree-gateway-version>3.26.0</braintree-gateway-version>
         <build-helper-maven-plugin-version>3.4.0</build-helper-maven-plugin-version>
+        <bytebuddy-version>1.14.9</bytebuddy-version>
         <c3p0-version>0.9.5.5</c3p0-version>
         <caffeine-version>3.1.8</caffeine-version>
         <californium-version>2.8.0</californium-version>
@@ -2802,12 +2803,22 @@
                 <artifactId>micrometer-tracing</artifactId>
                 <version>${micrometer-tracing-version}</version>
             </dependency>
-
             <dependency>
                 <groupId>org.apache.commons</groupId>
                 <artifactId>commons-lang3</artifactId>
                 <version>${commons-lang3-version}</version>
             </dependency>
+            <dependency>
+                <groupId>net.bytebuddy</groupId>
+                <artifactId>byte-buddy</artifactId>
+                <version>${bytebuddy-version}</version>
+            </dependency>
+            <dependency>
+                <groupId>net.bytebuddy</groupId>
+                <artifactId>byte-buddy-agent</artifactId>
+                <version>${bytebuddy-version}</version>
+            </dependency>
+
         </dependencies>
     </dependencyManagement>