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-examples.git


The following commit(s) were added to refs/heads/main by this push:
     new 6e413c4  CAMEL-16757: YAML DSL to support route configuration
6e413c4 is described below

commit 6e413c45004c35561a6968ed30429d1256e0a3d1
Author: Claus Ibsen <[email protected]>
AuthorDate: Mon Aug 2 17:09:53 2021 +0200

    CAMEL-16757: YAML DSL to support route configuration
---
 routes-configuration/pom.xml | 31 ++++++++++++++++++++++---------
 1 file changed, 22 insertions(+), 9 deletions(-)

diff --git a/routes-configuration/pom.xml b/routes-configuration/pom.xml
index f24fe88..dc5fa46 100644
--- a/routes-configuration/pom.xml
+++ b/routes-configuration/pom.xml
@@ -65,23 +65,36 @@
         <!-- Spring Boot -->
         <dependency>
             <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-starter-web</artifactId>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework.boot</groupId>
-                    <artifactId>spring-boot-starter-tomcat</artifactId>
-                </exclusion>
-            </exclusions>
+            <artifactId>spring-boot-starter</artifactId>
         </dependency>
 
         <!-- Camel -->
-        <!-- xml-io with fast xml route loader -->
+
+        <!-- fine grained dependencies when using engine-starter -->
+        <dependency>
+            <groupId>org.apache.camel.springboot</groupId>
+            <artifactId>camel-spring-boot-engine-starter</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.camel.springboot</groupId>
+            <artifactId>camel-bean-starter</artifactId>
+        </dependency>
         <dependency>
             <groupId>org.apache.camel.springboot</groupId>
-            <artifactId>camel-spring-boot-starter</artifactId>
+            <artifactId>camel-direct-starter</artifactId>
         </dependency>
         <dependency>
             <groupId>org.apache.camel.springboot</groupId>
+            <artifactId>camel-log-starter</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.camel.springboot</groupId>
+            <artifactId>camel-timer-starter</artifactId>
+        </dependency>
+
+        <!-- xml-io with fast xml route loader -->
+        <dependency>
+            <groupId>org.apache.camel.springboot</groupId>
             <artifactId>camel-xml-io-dsl-starter</artifactId>
         </dependency>
         <!-- yaml route loader -->

Reply via email to