You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by jb...@apache.org on 2010/10/28 15:05:10 UTC

svn commit: r1028284 - in /servicemix/components/engines/servicemix-camel/trunk/src/test/resources/org/apache/servicemix/camel/su13-src: ./ camel-context.xml

Author: jbonofre
Date: Thu Oct 28 13:05:10 2010
New Revision: 1028284

URL: http://svn.apache.org/viewvc?rev=1028284&view=rev
Log:
[SMXCOMP-810] In preparation of the Camel 2.5.0 release, servicemix-camel now uses Camel 2.5-SNAPSHOT.

Added:
    servicemix/components/engines/servicemix-camel/trunk/src/test/resources/org/apache/servicemix/camel/su13-src/
    servicemix/components/engines/servicemix-camel/trunk/src/test/resources/org/apache/servicemix/camel/su13-src/camel-context.xml

Added: servicemix/components/engines/servicemix-camel/trunk/src/test/resources/org/apache/servicemix/camel/su13-src/camel-context.xml
URL: http://svn.apache.org/viewvc/servicemix/components/engines/servicemix-camel/trunk/src/test/resources/org/apache/servicemix/camel/su13-src/camel-context.xml?rev=1028284&view=auto
==============================================================================
--- servicemix/components/engines/servicemix-camel/trunk/src/test/resources/org/apache/servicemix/camel/su13-src/camel-context.xml (added)
+++ servicemix/components/engines/servicemix-camel/trunk/src/test/resources/org/apache/servicemix/camel/su13-src/camel-context.xml Thu Oct 28 13:05:10 2010
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+
+-->
+<!-- START SNIPPET: camel -->
+<beans xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xsi:schemaLocation="
+       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+       http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd
+    ">
+
+  <camelContext xmlns="http://camel.apache.org/schema/spring" id="su13">
+    <route>
+      <from uri="jbi:name:cheese"/>
+      <to uri="log:Su5Log" />
+      <to uri="jbi:service:namespace:echo?mep=in-out"/>
+    </route>
+  </camelContext>
+
+</beans>
+<!-- END SNIPPET: camel -->