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 2020/02/24 15:13:41 UTC

[camel-examples] branch master updated: Polished

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 00128cc  Polished
00128cc is described below

commit 00128cca5802913d6d6856deadd90db743d683f9
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Feb 24 16:13:31 2020 +0100

    Polished
---
 examples/camel-example-java8/pom.xml | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/examples/camel-example-java8/pom.xml b/examples/camel-example-java8/pom.xml
index 4233dd1..5481131 100644
--- a/examples/camel-example-java8/pom.xml
+++ b/examples/camel-example-java8/pom.xml
@@ -51,13 +51,20 @@
 
     <dependencies>
 
+        <!-- camel main to bootstrap camel -->
         <dependency>
             <groupId>org.apache.camel</groupId>
-            <artifactId>camel-core</artifactId>
+            <artifactId>camel-main</artifactId>
         </dependency>
+
+        <!-- camel components used -->
         <dependency>
             <groupId>org.apache.camel</groupId>
-            <artifactId>camel-main</artifactId>
+            <artifactId>camel-bean</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.camel</groupId>
+            <artifactId>camel-timer</artifactId>
         </dependency>
 
         <!-- logging -->
@@ -90,7 +97,7 @@
 
     <build>
         <plugins>
-            <!-- Allows the example to be run via 'mvn compile exec:java' -->
+            <!-- Allows the example to be run via 'mvn compile camel:run' -->
             <plugin>
                 <groupId>org.apache.camel</groupId>
                 <artifactId>camel-maven-plugin</artifactId>