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 2023/08/23 20:05:24 UTC

[camel-kamelets-examples] branch main updated (401b458 -> 6d6839b)

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


    from 401b458  CAMEL-19772: camel-core - Dump routes to include custom beans
     new 080c560  Bean order should not matter
     new 6d6839b  We have a jbang command now

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:
 jbang/xml-to-yaml/application.properties | 5 -----
 jbang/xml-to-yaml/order-spring.xml       | 8 ++++----
 2 files changed, 4 insertions(+), 9 deletions(-)
 delete mode 100644 jbang/xml-to-yaml/application.properties


[camel-kamelets-examples] 02/02: We have a jbang command now

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

commit 6d6839bbba3016d51e1ee55e85a3903d2b9611ab
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Aug 23 21:45:35 2023 +0200

    We have a jbang command now
---
 jbang/xml-to-yaml/application.properties | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/jbang/xml-to-yaml/application.properties b/jbang/xml-to-yaml/application.properties
deleted file mode 100644
index 4c10dbe..0000000
--- a/jbang/xml-to-yaml/application.properties
+++ /dev/null
@@ -1,5 +0,0 @@
-# dump routes to YAML in dump folder
-camel.main.dump-routes=yaml
-camel.main.dump-routes-include=all
-camel.main.dump-routes-directory=dump
-camel.main.dump-routes-uri-as-parameters=true
\ No newline at end of file


[camel-kamelets-examples] 01/02: Bean order should not matter

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

commit 080c56081db4795a0d7ce518d35368a14948036e
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Aug 23 16:11:29 2023 +0200

    Bean order should not matter
---
 jbang/xml-to-yaml/order-spring.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/jbang/xml-to-yaml/order-spring.xml b/jbang/xml-to-yaml/order-spring.xml
index 33f613e..29e0f81 100644
--- a/jbang/xml-to-yaml/order-spring.xml
+++ b/jbang/xml-to-yaml/order-spring.xml
@@ -2,14 +2,14 @@
 
     <!-- embedded spring-xml beans -->
     <beans xmlns="http://www.springframework.org/schema/beans">
-        <bean id="office" class="com.foo.Address">
-           <property name="zip" value="1234"/>
-           <property name="street" value="Gardenstreet 444"/>
-       </bean>        
        <bean id="orderService" class="com.foo.OrderService">
            <property name="customer" value="Acme"/>
            <property name="address" ref="office"/>
        </bean> 
+       <bean id="office" class="com.foo.Address">
+           <property name="zip" value="1234"/>
+           <property name="street" value="Gardenstreet 444"/>
+       </bean>
     </beans>
 
     <route>