mirror of https://github.com/apache/activemq.git
- Added activemq-optional.jar to the assembly module dependency.
- Corrected broker name in config files. git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@386480 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2b1a0f0c94
commit
89ac08c57f
|
@ -38,9 +38,8 @@
|
||||||
</properties>
|
</properties>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!--
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>activemq</groupId>
|
<groupId>${pom.groupId}</groupId>
|
||||||
<artifactId>activemq-optional</artifactId>
|
<artifactId>activemq-optional</artifactId>
|
||||||
<version>${pom.currentVersion}</version>
|
<version>${pom.currentVersion}</version>
|
||||||
<properties>
|
<properties>
|
||||||
|
@ -48,7 +47,6 @@
|
||||||
<optional>true</optional>
|
<optional>true</optional>
|
||||||
</properties>
|
</properties>
|
||||||
</dependency>
|
</dependency>
|
||||||
-->
|
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>activeio</groupId>
|
<groupId>activeio</groupId>
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
<beans xmlns="http://activemq.org/config/1.0">
|
<beans xmlns="http://activemq.org/config/1.0">
|
||||||
|
|
||||||
|
|
||||||
<broker name="receiver" persistent="false" useJmx="false">
|
<broker brokerName="receiver" persistent="false" useJmx="false">
|
||||||
<transportConnectors>
|
<transportConnectors>
|
||||||
<transportConnector uri="tcp://localhost:0" discoveryUri="multicast://default"/>
|
<transportConnector uri="tcp://localhost:0" discoveryUri="multicast://default"/>
|
||||||
</transportConnectors>
|
</transportConnectors>
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
-->
|
-->
|
||||||
<beans xmlns="http://activemq.org/config/1.0">
|
<beans xmlns="http://activemq.org/config/1.0">
|
||||||
|
|
||||||
<broker name="receiver" persistent="false">
|
<broker brokerName="receiver" persistent="false">
|
||||||
<transportConnectors>
|
<transportConnectors>
|
||||||
<transportConnector uri="http://localhost:62302"/>
|
<transportConnector uri="http://localhost:62302"/>
|
||||||
</transportConnectors>
|
</transportConnectors>
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
-->
|
-->
|
||||||
<beans xmlns="http://activemq.org/config/1.0">
|
<beans xmlns="http://activemq.org/config/1.0">
|
||||||
|
|
||||||
<broker name="sender" persistent="false" useJmx="false">
|
<broker brokerName="sender" persistent="false" useJmx="false">
|
||||||
<transportConnectors>
|
<transportConnectors>
|
||||||
<transportConnector uri="tcp://localhost:0" discoveryUri="multicast://default"/>
|
<transportConnector uri="tcp://localhost:0" discoveryUri="multicast://default"/>
|
||||||
</transportConnectors>
|
</transportConnectors>
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
-->
|
-->
|
||||||
<beans xmlns="http://activemq.org/config/1.0">
|
<beans xmlns="http://activemq.org/config/1.0">
|
||||||
|
|
||||||
<broker name="sender" persistent="false">
|
<broker brokerName="sender" persistent="false">
|
||||||
<transportConnectors>
|
<transportConnectors>
|
||||||
<transportConnector uri="http://localhost:62301"/>
|
<transportConnector uri="http://localhost:62301"/>
|
||||||
</transportConnectors>
|
</transportConnectors>
|
||||||
|
|
Loading…
Reference in New Issue