Fixed up the assembly so that the embedded camel routes actually work; they were dependent on the JTA jar being present so this was causing ClassNotFoundException if you actually fired messages into the from queue

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@553763 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2007-07-06 06:51:12 +00:00
parent 3d862f0dfb
commit 9840a420cf
4 changed files with 9 additions and 2 deletions

View File

@ -168,6 +168,11 @@
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jms_1.1_spec</artifactId>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jta_1.0.1B_spec</artifactId>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jsp_2.0_spec</artifactId>

View File

@ -149,6 +149,7 @@
<include>mx4j:mx4j</include>
<include>org.apache.geronimo.specs:geronimo-j2ee-management_1.0_spec</include>
<include>org.apache.geronimo.specs:geronimo-jms_1.1_spec</include>
<include>org.apache.geronimo.specs:geronimo-jta_1.0.1B_spec</include>
<include>${pom.groupId}:activemq-web</include>
<!-- camel -->

View File

@ -154,6 +154,7 @@
<include>mx4j:mx4j</include>
<include>org.apache.geronimo.specs:geronimo-j2ee-management_1.0_spec</include>
<include>org.apache.geronimo.specs:geronimo-jms_1.1_spec</include>
<include>org.apache.geronimo.specs:geronimo-jta_1.0.1B_spec</include>
<include>${pom.groupId}:activemq-web</include>
<!-- camel -->

View File

@ -105,8 +105,8 @@
in the package named 'org.foo.bar' or any of its child packages
<route>
<from uri="activemq:com.acme.MyQueue"/>
<to uri="activemq:com.acme.SomeOtherQueue"/>
<from uri="activemq:example.A"/>
<to uri="activemq:example.B"/>
</route>
-->
</camelContext>