<?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.

-->
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:sm="http://servicemix.apache.org/config/1.0"
       xsi:schemaLocation="
         http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
         http://servicemix.apache.org/config/1.0 http://repo1.maven.org/maven2/org/apache/servicemix/servicemix-core/3.1.2/servicemix-core-3.1.2.xsd
         http://activemq.org/config/1.0 http://activemq.apache.org/schema/activemq-core.xsd
         http://activemq.apache.org/camel/schema/spring http://activemq.apache.org/camel/schema/spring/camel-spring.xsd">

  <!-- Run a local ActiveMQ broker for testing -->
  <broker xmlns="http://activemq.org/config/1.0" brokerName="localhost" persistent="false">
    <transportConnectors>
      <transportConnector name="openwire" uri="tcp://localhost:61616"/>
    </transportConnectors>
  </broker>


  <!-- Deploy artifacts in ServiceMix -->
  <sm:container createJmxConnector="false">

    <sm:deployments>
      <sm:installSharedLibrary groupId="org.apache.servicemix" artifactId="servicemix-shared"/>
      <sm:installComponent groupId="org.apache.servicemix" artifactId="servicemix-eip"/>
      <sm:installComponent groupId="org.apache.servicemix" artifactId="servicemix-http"/>
      <sm:installComponent groupId="org.apache.servicemix" artifactId="servicemix-jms"/>
      <sm:installComponent groupId="org.apache.servicemix" artifactId="servicemix-saxon"/>
      <sm:deployServiceAssembly groupId="org.apache.servicemix.samples.bridge" artifactId="bridge-sa"/>
    </sm:deployments>

  </sm:container>


  <!--
   || Lets test with some Enterprise Integration Patterns
   || For more details see
   ||
   || http://activemq.apache.org/camel/enterprise-integration-patterns.html
   -->
  <camelContext id="camel" xmlns="http://activemq.apache.org/camel/schema/spring">

    <!-- You can use a <package> element for each root package to search for Java routes -->
    <package>org.foo.bar</package>

    <!-- You can use Spring XML syntax to define the routes here using the <route> element -->
    <route>
      <from uri="activemq:example.A"/>
      <to uri="activemq:example.B"/>
    </route>
  </camelContext>


</beans>
