Add HornetQ protocol to the distro
This commit is contained in:
parent
074528f385
commit
dfe8b14ac0
|
@ -52,7 +52,7 @@ under the License.
|
|||
<acceptor name="stomp">tcp://${activemq.remoting.stomp.host:${host}}:${activemq.remoting.stomp.port:${stomp.port}}?protocols=STOMP</acceptor>
|
||||
|
||||
<!-- HornetQ Compatibility Acceptor. Enables ActiveMQ Core and STOMP for legacy HornetQ clients. -->
|
||||
<acceptor name="hornetq">tcp://${activemq.remoting.hornetq.host:${host}}:${activemq.remoting.hornetq.port:${hq.port}}?protocols=CORE,STOMP</acceptor>
|
||||
<acceptor name="hornetq">tcp://${activemq.remoting.hornetq.host:${host}}:${activemq.remoting.hornetq.port:${hq.port}}?protocols=HORNETQ,STOMP</acceptor>
|
||||
</acceptors>
|
||||
|
||||
${cluster-security.settings}${cluster.settings}${replicated.settings}${shared-store.settings}
|
||||
|
|
|
@ -117,6 +117,11 @@
|
|||
<artifactId>artemis-openwire-protocol</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.activemq</groupId>
|
||||
<artifactId>artemis-hornetq-protocol</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.activemq</groupId>
|
||||
<artifactId>artemis-native</artifactId>
|
||||
|
|
|
@ -58,6 +58,7 @@
|
|||
<include>org.apache.activemq:artemis-amqp-protocol</include>
|
||||
<include>org.apache.activemq:artemis-openwire-protocol</include>
|
||||
<include>org.apache.activemq:artemis-proton-plug</include>
|
||||
<include>org.apache.activemq:artemis-hornetq-protocol</include>
|
||||
<include>org.apache.activemq:artemis-stomp-protocol</include>
|
||||
<include>org.apache.activemq:artemis-ra</include>
|
||||
<include>org.apache.activemq:artemis-selector</include>
|
||||
|
|
Loading…
Reference in New Issue