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-spring-boot.git


The following commit(s) were added to refs/heads/main by this push:
     new 2ad47a61137 CAMEL-23755 - force jooq version compatible with JDK 17 
(#1818)
2ad47a61137 is described below

commit 2ad47a61137c663ab24c6ea52369d0876b5412fa
Author: AurĂ©lien Pupier <[email protected]>
AuthorDate: Tue Jun 16 13:20:54 2026 +0200

    CAMEL-23755 - force jooq version compatible with JDK 17 (#1818)
    
    the spring boot dependencies bom 4.1.0 has upgraded to jooq 4.21 which
    requires JDK 21 with
    https://github.com/spring-projects/spring-boot/issues/48619
    It says that it allows to be compatible with Jackson 3, I think we still
    have jackson 2 in Camel so should be working still.
    
    Signed-off-by: AurĂ©lien Pupier <[email protected]>
---
 parent/pom.xml                                 | 5 +++++
 tooling/camel-spring-boot-dependencies/pom.xml | 5 +++++
 2 files changed, 10 insertions(+)

diff --git a/parent/pom.xml b/parent/pom.xml
index 9ad92e11b78..dcb20c5788e 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -61,6 +61,11 @@
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
+            <dependency>
+                <groupId>org.jooq</groupId>
+                <artifactId>jooq</artifactId>
+                <version>${jooq-version}</version>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 
diff --git a/tooling/camel-spring-boot-dependencies/pom.xml 
b/tooling/camel-spring-boot-dependencies/pom.xml
index 9c2af7cc5d5..ee373b60b8d 100644
--- a/tooling/camel-spring-boot-dependencies/pom.xml
+++ b/tooling/camel-spring-boot-dependencies/pom.xml
@@ -5200,6 +5200,11 @@
         <artifactId>plexus-xml</artifactId>
         <version>3.0.1</version>
       </dependency>
+      <dependency>
+        <groupId>org.jooq</groupId>
+        <artifactId>jooq</artifactId>
+        <version>3.19.30</version>
+      </dependency>
       <dependency>
         <groupId>org.jspecify</groupId>
         <artifactId>jspecify</artifactId>

Reply via email to