mirror of https://github.com/apache/activemq.git
Patched the ActiveMQ build to work with Camel 1.1
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@564622 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1963ea4006
commit
9cde47f42c
|
@ -120,6 +120,16 @@
|
||||||
<groupId>org.apache.camel</groupId>
|
<groupId>org.apache.camel</groupId>
|
||||||
<artifactId>camel-activemq</artifactId>
|
<artifactId>camel-activemq</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<!-- for the XML parsing -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.xml</groupId>
|
||||||
|
<artifactId>jaxb-api</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.sun.xml.bind</groupId>
|
||||||
|
<artifactId>jaxb-impl</artifactId>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
<!-- commons -->
|
<!-- commons -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -158,6 +158,12 @@
|
||||||
<include>org.apache.camel:camel-spring</include>
|
<include>org.apache.camel:camel-spring</include>
|
||||||
<include>org.apache.camel:camel-jms</include>
|
<include>org.apache.camel:camel-jms</include>
|
||||||
<include>org.apache.camel:camel-activemq</include>
|
<include>org.apache.camel:camel-activemq</include>
|
||||||
|
<!-- Java 5 only -->
|
||||||
|
<include>javax.xml:jaxb-api</include>
|
||||||
|
<include>javax.activation:activation</include>
|
||||||
|
<include>com.sun.xml.bind:jaxb-impl</include>
|
||||||
|
<include>stax:stax-api</include>
|
||||||
|
<include>stax:stax</include>
|
||||||
</includes>
|
</includes>
|
||||||
</dependencySet>
|
</dependencySet>
|
||||||
<dependencySet>
|
<dependencySet>
|
||||||
|
|
|
@ -163,6 +163,12 @@
|
||||||
<include>org.apache.camel:camel-spring</include>
|
<include>org.apache.camel:camel-spring</include>
|
||||||
<include>org.apache.camel:camel-jms</include>
|
<include>org.apache.camel:camel-jms</include>
|
||||||
<include>org.apache.camel:camel-activemq</include>
|
<include>org.apache.camel:camel-activemq</include>
|
||||||
|
<!-- Java 5 only -->
|
||||||
|
<include>javax.xml:jaxb-api</include>
|
||||||
|
<include>javax.activation:activation</include>
|
||||||
|
<include>com.sun.xml.bind:jaxb-impl</include>
|
||||||
|
<include>stax:stax-api</include>
|
||||||
|
<include>stax:stax</include>
|
||||||
</includes>
|
</includes>
|
||||||
</dependencySet>
|
</dependencySet>
|
||||||
<dependencySet>
|
<dependencySet>
|
||||||
|
|
28
pom.xml
28
pom.xml
|
@ -414,6 +414,34 @@
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- for the XML parsing -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.xml</groupId>
|
||||||
|
<artifactId>jaxb-api</artifactId>
|
||||||
|
<version>2.0</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>javax.xml</groupId>
|
||||||
|
<artifactId>jsr173</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>javax.activation</groupId>
|
||||||
|
<artifactId>activation</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.sun.xml.bind</groupId>
|
||||||
|
<artifactId>jaxb-impl</artifactId>
|
||||||
|
<version>2.0.3</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>javax.jws</groupId>
|
||||||
|
<artifactId>jsr181-api</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- camel testing -->
|
<!-- camel testing -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.camel</groupId>
|
<groupId>org.apache.camel</groupId>
|
||||||
|
|
Loading…
Reference in New Issue