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

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


The following commit(s) were added to refs/heads/main by this push:
     new 3e80d38c903 CAMEL-19992: Upgrade bytebuddy that can support Java 21 
(#11729)
3e80d38c903 is described below

commit 3e80d38c90322825f702632a239fd7587ef51b88
Author: Claus Ibsen <[email protected]>
AuthorDate: Mon Oct 16 09:53:25 2023 +0200

    CAMEL-19992: Upgrade bytebuddy that can support Java 21 (#11729)
---
 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>
 

Reply via email to