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 2021/12/14 13:21:36 UTC

[camel-examples] branch main updated (9804699 -> 3ab4a1d)

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

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


    from 9804699  CAMEL-17276: mvn camel:run - Can now log in color with its own built-in logging if enabled with logLevel setting.
     new 5c1e165  Add jmx management to this example
     new 3ab4a1d  Polished

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 examples/routeloader/pom.xml                                   | 5 +++++
 examples/routeloader/src/main/resources/application.properties | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

[camel-examples] 02/02: Polished

Posted by da...@apache.org.
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-examples.git

commit 3ab4a1d2e09e8d45b4dcd4a2a1341dcb6c1f5b16
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Tue Dec 14 14:07:48 2021 +0100

    Polished
---
 examples/routeloader/src/main/resources/application.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/routeloader/src/main/resources/application.properties b/examples/routeloader/src/main/resources/application.properties
index b8955fc..62bd63f 100644
--- a/examples/routeloader/src/main/resources/application.properties
+++ b/examples/routeloader/src/main/resources/application.properties
@@ -17,7 +17,7 @@
 
 # to configure camel main
 # here you can configure options on camel main (see MainConfigurationProperties class)
-camel.main.name = MyJavaLoader
+camel.main.name = MyRouteLoader
 
 # dump routes as XML (routes are coded in different DSLs but can be dumped as XML)
 camel.main.dump-routes = true

[camel-examples] 01/02: Add jmx management to this example

Posted by da...@apache.org.
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-examples.git

commit 5c1e165f230b159a3eec9e7c252cc6891761564c
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Tue Dec 14 14:04:45 2021 +0100

    Add jmx management to this example
---
 examples/routeloader/pom.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/examples/routeloader/pom.xml b/examples/routeloader/pom.xml
index 2454791..5215fa2 100644
--- a/examples/routeloader/pom.xml
+++ b/examples/routeloader/pom.xml
@@ -76,6 +76,11 @@
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-xml-jaxb</artifactId>
         </dependency>
+        <!-- jmx management -->
+        <dependency>
+            <groupId>org.apache.camel</groupId>
+            <artifactId>camel-management</artifactId>
+        </dependency>
 
         <!-- components -->
         <dependency>