You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2022/01/24 09:55:37 UTC

[camel-examples] branch main updated: Fix the CNFE in the jOOQ example

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

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


The following commit(s) were added to refs/heads/main by this push:
     new a6acc96  Fix the CNFE in the jOOQ example
a6acc96 is described below

commit a6acc96c8ae283af903e9a027604077bd0c52304
Author: Nicolas Filotto <nf...@talend.com>
AuthorDate: Mon Jan 24 10:33:29 2022 +0100

    Fix the CNFE in the jOOQ example
---
 examples/jooq/pom.xml | 25 ++++---------------------
 1 file changed, 4 insertions(+), 21 deletions(-)

diff --git a/examples/jooq/pom.xml b/examples/jooq/pom.xml
index 31fdc70..f33701d 100644
--- a/examples/jooq/pom.xml
+++ b/examples/jooq/pom.xml
@@ -56,6 +56,10 @@
         <!-- Camel -->
         <dependency>
             <groupId>org.apache.camel</groupId>
+            <artifactId>camel-core</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.camel</groupId>
             <artifactId>camel-spring-main</artifactId>
         </dependency>
         <dependency>
@@ -92,31 +96,10 @@
         </dependency>
         <!-- Database access -->
         <dependency>
-            <groupId>org.jooq</groupId>
-            <artifactId>jooq</artifactId>
-            <version>${jooq-version}</version>
-        </dependency>
-        <dependency>
-            <groupId>commons-dbcp</groupId>
-            <artifactId>commons-dbcp</artifactId>
-            <version>${commons-dbcp-version}</version>
-        </dependency>
-        <dependency>
             <groupId>org.hsqldb</groupId>
             <artifactId>hsqldb</artifactId>
             <version>${hsqldb-version}</version>
         </dependency>
-
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-context</artifactId>
-            <version>${spring-version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-jdbc</artifactId>
-            <version>${spring-version}</version>
-        </dependency>
     </dependencies>
 
     <build>