ports/167952: [NEW PORT] net/hornetq: Multi-protocol asynchronous messaging system

Radim Kolar hsn at sendmail.cz
Wed May 16 08:40:04 UTC 2012


>Number:         167952
>Category:       ports
>Synopsis:       [NEW PORT] net/hornetq: Multi-protocol asynchronous messaging system
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed May 16 08:40:03 UTC 2012
>Closed-Date:
>Last-Modified:
>Originator:     Radim Kolar
>Release:        FreeBSD 8.3-RELEASE i386
>Organization:
>Environment:
System: FreeBSD fbsd8.localdomain 8.3-RELEASE FreeBSD 8.3-RELEASE #1: Wed Apr 11 20:27:44 CEST 2012
>Description:
HornetQ is an open source project to build a multi-protocol, embeddable,
very high performance, clustered, asynchronous messaging system, designed
with usability in mind.

HornetQ is an example of Message Oriented Middleware (MoM)

WWW:	http://www.jboss.org/hornetq

Generated with FreeBSD Port Tools 0.99_4 (mode: new)
>How-To-Repeat:
>Fix:

--- .shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	hornetq
#	hornetq/files
#	hornetq/files/hornetq.in
#	hornetq/files/patch-log1
#	hornetq/files/patch-log2
#	hornetq/files/patch-run
#	hornetq/files/patch-stop
#	hornetq/pkg-descr
#	hornetq/pkg-install
#	hornetq/pkg-plist
#	hornetq/Makefile
#	hornetq/pkg-deinstall
#	hornetq/distinfo
#
echo c - hornetq
mkdir -p hornetq > /dev/null 2>&1
echo c - hornetq/files
mkdir -p hornetq/files > /dev/null 2>&1
echo x - hornetq/files/hornetq.in
sed 's/^X//' >hornetq/files/hornetq.in << 'b3207b8781f8ffccb6ec17cf2c6b9d6b'
X#!/bin/sh
X#
X# Copyright (c) 2012, Radim Kolar
X# All rights reserved.
X#
X# Redistribution and use in source and binary forms, with or without
X# modification, are permitted provided that the following conditions are met:
X#
X#  * Redistributions of source code must retain the above copyright notice,
X#    this list of conditions and the following disclaimer.
X#  * Redistributions in binary form must reproduce the above copyright
X#    notice, this list of conditions and the following disclaimer in the
X#    documentation and/or other materials provided with the distribution.
X#
X# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY
X# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
X# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
X# DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY
X# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
X# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
X# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
X# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
X# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
X# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
X# DAMAGE.
X
X# PROVIDE: hornetq
X# REQUIRE: LOGIN
X# KEYWORD: shutdown
X#
X# $FreeBSD$
X
X. /etc/rc.subr
X
Xname="hornetq"
Xrcvar=hornetq_enable
Xload_rc_config $name
X
Xhornetq_enable=${hornetq_enable:-"NO"}
Xhornetq_config=${hornetq_config:-"non-clustered"}
Xhornetq_deployment=${hornetq_deployment:-"hornetq-beans.xml"}
Xhornetq_data=${hornetq_data:-"/var/spool/hornetq"}
X
Xcommand=%%DATADIR%%/bin/run.sh
Xcommand_args="%%DATADIR%%/config/stand-alone/${hornetq_config} ${hornetq_deployment}"
Xstop_precmd="${name}_prestop"
Xstart_cmd="${name}_start"
Xsig_stop="KILL"
X
Xcommand_interpreter="/bin/sh"
Xpidfile=/var/run/hornetq.pid
X
Xexport PATH=$PATH:%%LOCALBASE%%/bin
Xexport HORNETQ_HOME=%%DATADIR%%
Xexport CLUSTER_PROPS=-Ddata.dir=${hornetq_data}
Xexport JAVA_VENDOR=openjdk
Xexport JAVA_VERSION=1.6
X
Xhornetq_prestop() {
X	$HORNETQ_HOME/bin/stop.sh %%DATADIR%%/config/stand-alone/${hornetq_config}
X	sleep 10
X	return 0
X}
X
Xhornetq_start()
X{
X  if [ -z "$rc_pid" ]; then
X	   echo -n "Starting $name"
X	   mkdir -p ${hornetq_data}
X	   ${command} ${command_args} &
X	   echo -n $! > $pidfile
X	   echo "."
X  else
X           echo "$name is already running with pid=$rc_pid."
X  fi
X}
Xrun_rc_command "$1"
b3207b8781f8ffccb6ec17cf2c6b9d6b
echo x - hornetq/files/patch-log1
sed 's/^X//' >hornetq/files/patch-log1 << '09753470c05badae892031a83c9af08c'
X--- config/stand-alone/clustered/logging.properties.sample.orig	2012-04-13 18:43:44.000000000 +0200
X+++ config/stand-alone/clustered/logging.properties.sample	2012-05-16 09:21:49.552599669 +0200
X@@ -15,10 +15,10 @@
X # Note that these classes must be on the system classpath.
X # By default we only configure a ConsoleHandler, which will only
X # show messages at the INFO and above levels.
X-handlers=java.util.logging.ConsoleHandler,java.util.logging.FileHandler
X+handlers=java.util.logging.FileHandler
X java.util.logging.ConsoleHandler.formatter=org.hornetq.integration.logging.HornetQLoggerFormatter
X java.util.logging.FileHandler.level=INFO
X-java.util.logging.FileHandler.pattern=../logs/hornetq.log
X+java.util.logging.FileHandler.pattern=/var/log/hornetq.log
X java.util.logging.FileHandler.formatter=org.hornetq.integration.logging.HornetQLoggerFormatter
X # Default global logging level.
X # This specifies which kinds of events are logged across
09753470c05badae892031a83c9af08c
echo x - hornetq/files/patch-log2
sed 's/^X//' >hornetq/files/patch-log2 << '45d86b85f0afa1638c2bdc3ae65b43ab'
X--- config/stand-alone/non-clustered/logging.properties.sample.orig	2012-04-13 18:43:44.000000000 +0200
X+++ config/stand-alone/non-clustered/logging.properties.sample	2012-05-16 09:28:24.333462186 +0200
X@@ -15,11 +15,11 @@
X # Note that these classes must be on the system classpath.
X # By default we only configure a ConsoleHandler, which will only
X # show messages at the INFO and above levels.
X-handlers=java.util.logging.ConsoleHandler,java.util.logging.FileHandler
X+handlers=java.util.logging.FileHandler
X java.util.logging.ConsoleHandler.formatter=org.hornetq.integration.logging.HornetQLoggerFormatter
X java.util.logging.FileHandler.level=INFO
X java.util.logging.FileHandler.formatter=org.hornetq.integration.logging.HornetQLoggerFormatter
X-java.util.logging.FileHandler.pattern=../logs/hornetq.log
X+java.util.logging.FileHandler.pattern=/var/log/hornetq.log
X # Default global logging level.
X # This specifies which kinds of events are logged across
X # all loggers.  For any given facility this global level
45d86b85f0afa1638c2bdc3ae65b43ab
echo x - hornetq/files/patch-run
sed 's/^X//' >hornetq/files/patch-run << '41ab1bcfaef0870c8333ba04d6706111'
X--- bin/run.sh.orig	2012-04-13 18:43:44.000000000 +0200
X+++ bin/run.sh	2012-05-16 06:16:41.267520836 +0200
X@@ -1,7 +1,6 @@
X-#!/bin/sh
X+#!/bin/sh -T
X 
X-export HORNETQ_HOME=..
X-mkdir -p ../logs
X+if [ -z $HORNETQ_HOME ]; then export HORNETQ_HOME=..; fi
X # By default, the server is started in the non-clustered standalone configuration
X 
X if [ a"$1" = a ]; then CONFIG_DIR=$HORNETQ_HOME/config/stand-alone/non-clustered; else CONFIG_DIR="$1"; fi
X@@ -20,4 +19,4 @@
X echo "***********************************************************************************"
X echo "java $JVM_ARGS -classpath $CLASSPATH org.hornetq.integration.bootstrap.HornetQBootstrapServer $FILENAME"
X echo "***********************************************************************************"
X-java $JVM_ARGS -classpath $CLASSPATH -Dcom.sun.management.jmxremote org.hornetq.integration.bootstrap.HornetQBootstrapServer $FILENAME
X\ No newline at end of file
X+java $JVM_ARGS -classpath $CLASSPATH -Dcom.sun.management.jmxremote org.hornetq.integration.bootstrap.HornetQBootstrapServer $FILENAME
41ab1bcfaef0870c8333ba04d6706111
echo x - hornetq/files/patch-stop
sed 's/^X//' >hornetq/files/patch-stop << '2233b8f7b9f3e3b85b624d6067c783e6'
X--- bin/stop.sh.orig	2012-04-13 18:43:44.000000000 +0200
X+++ bin/stop.sh	2012-05-15 18:46:47.292027604 +0200
X@@ -1,5 +1,5 @@
X #!/bin/sh
X 
X-export HORNETQ_HOME=..
X+if [ -z $HORNETQ_HOME ]; then export HORNETQ_HOME=..;fi
X if [ a"$1" = a ]; then CONFIG_DIR=$HORNETQ_HOME/config/stand-alone/non-clustered; else CONFIG_DIR="$1"; fi
X touch $CONFIG_DIR/STOP_ME;
X\ No newline at end of file
2233b8f7b9f3e3b85b624d6067c783e6
echo x - hornetq/pkg-descr
sed 's/^X//' >hornetq/pkg-descr << 'a36b0cc1984cc9b54cf3f5c3136369f4'
XHornetQ is an open source project to build a multi-protocol, embeddable,
Xvery high performance, clustered, asynchronous messaging system, designed
Xwith usability in mind.
X
XHornetQ is an example of Message Oriented Middleware (MoM)
X
XWWW:	http://www.jboss.org/hornetq
a36b0cc1984cc9b54cf3f5c3136369f4
echo x - hornetq/pkg-install
sed 's/^X//' >hornetq/pkg-install << '03f98d63a7e696825975fbfef648c8c1'
X#!/bin/sh
X#
X# Copy sample hornetq config files to real ones if real ones does not exists
X#
Xif [ "$2" = "POST-INSTALL" ]; then
X   if [ ! -d $PKG_PREFIX/share/hornetq/config/stand-alone ]; then exit 1; fi
X   umask 027
X   cd $PKG_PREFIX/share/hornetq/config/stand-alone
X   for cfgdir  in clustered non-clustered; do
X      for cfgfile in hornetq-beans.xml hornetq-users.xml \
X	             hornetq-configuration.xml jndi.properties \
X		     hornetq-jms.xml logging.properties; do
X         if [ ! -f $cfgdir/$cfgfile ]; then
X            cp -p $cfgdir/$cfgfile.sample $cfgdir/$cfgfile
X         fi
X      done
X   done
Xfi
03f98d63a7e696825975fbfef648c8c1
echo x - hornetq/pkg-plist
sed 's/^X//' >hornetq/pkg-plist << '78ce390f5c22e2fe0bc1743965ad6fd9'
X at comment $FreeBSD$
X%%DATADIR%%/bin/run.sh
X%%DATADIR%%/bin/stop.sh
X%%DATADIR%%/lib/hornetq-bootstrap.jar
X%%DATADIR%%/lib/jnpserver.jar
X%%DATADIR%%/lib/netty.jar
X%%DATADIR%%/lib/hornetq-jms-client.jar
X%%DATADIR%%/lib/hornetq-twitter-integration.jar
X%%DATADIR%%/lib/hornetq-core-client.jar
X%%DATADIR%%/lib/hornetq-core.jar
X%%DATADIR%%/lib/hornetq-ra.rar
X%%DATADIR%%/lib/rest/jsr250-api.jar
X%%DATADIR%%/lib/rest/hornetq-rest-2.2.14.Final.jar
X%%DATADIR%%/lib/rest/sjsxp.jar
X%%DATADIR%%/lib/rest/jaxb-impl.jar
X%%DATADIR%%/lib/rest/hornetq-rest-2.2.14.Final-sources.jar
X%%DATADIR%%/lib/rest/scannotation.jar
X%%DATADIR%%/lib/rest/resteasy-jaxb-provider.jar
X%%DATADIR%%/lib/rest/jaxrs-api.jar
X%%DATADIR%%/lib/rest/resteasy-jaxrs.jar
X%%DATADIR%%/lib/twitter4j-core.jar
X%%DATADIR%%/lib/hornetq-spring-integration.jar
X%%DATADIR%%/lib/jboss-jms-api.jar
X%%DATADIR%%/lib/hornetq-jms.jar
X%%DATADIR%%/lib/hornetq-core-client-java5.jar
X%%DATADIR%%/lib/jboss-mc.jar
X%%DATADIR%%/lib/hornetq-logging.jar
X%%DATADIR%%/lib/jnp-client.jar
X%%DATADIR%%/lib/hornetq-jms-client-java5.jar
X%%DATADIR%%/lib/hornetq-service.sar
X%%DATADIR%%/lib/hornetq-jboss-as-integration.jar
X%%DATADIR%%/config/ra.xml
X%%DATADIR%%/config/schemas/hornetq-configuration.xsd
X%%DATADIR%%/config/schemas/hornetq-jms.xsd
X%%DATADIR%%/config/schemas/hornetq-users.xsd
X%%DATADIR%%/config/stand-alone/clustered/hornetq-jms.xml.sample
X%%DATADIR%%/config/stand-alone/clustered/logging.properties.sample
X%%DATADIR%%/config/stand-alone/clustered/hornetq-configuration.xml.sample
X%%DATADIR%%/config/stand-alone/clustered/jndi.properties.sample
X%%DATADIR%%/config/stand-alone/clustered/hornetq-beans.xml.sample
X%%DATADIR%%/config/stand-alone/clustered/hornetq-users.xml.sample
X%%DATADIR%%/config/stand-alone/non-clustered/hornetq-users.xml.sample
X%%DATADIR%%/config/stand-alone/non-clustered/hornetq-beans.xml.sample
X%%DATADIR%%/config/stand-alone/non-clustered/logging.properties.sample
X%%DATADIR%%/config/stand-alone/non-clustered/hornetq-jms.xml.sample
X%%DATADIR%%/config/stand-alone/non-clustered/jndi.properties.sample
X%%DATADIR%%/config/stand-alone/non-clustered/hornetq-configuration.xml.sample
X at dirrmtry %%DATADIR%%/config/stand-alone/non-clustered
X at dirrmtry %%DATADIR%%/config/stand-alone/clustered
X at dirrmtry %%DATADIR%%/config/stand-alone
X at dirrm %%DATADIR%%/config/schemas
X at dirrmtry %%DATADIR%%/config
X at dirrm %%DATADIR%%/lib/rest
X at dirrm %%DATADIR%%/lib
X at dirrm %%DATADIR%%/bin
X at dirrmtry %%DATADIR%%
X%%EXAMPLESDIR%%/build.xml
X%%EXAMPLESDIR%%/common/build.bat
X%%EXAMPLESDIR%%/common/build.sh
X%%EXAMPLESDIR%%/common/prettify.css
X%%EXAMPLESDIR%%/common/common.css
X%%EXAMPLESDIR%%/common/build.xml
X%%EXAMPLESDIR%%/common/config/ant.properties
X%%EXAMPLESDIR%%/common/config/logging.properties
X%%EXAMPLESDIR%%/common/config/hornetq-example-beans.xml
X%%EXAMPLESDIR%%/common/config/server.properties
X%%EXAMPLESDIR%%/common/images/hornetQ-banner_final.png
X%%EXAMPLESDIR%%/common/prettify.js
X%%EXAMPLESDIR%%/common/src/org/hornetq/common/example/HornetQExample.java
X%%EXAMPLESDIR%%/common/src/org/hornetq/common/example/KillChecker.java
X%%EXAMPLESDIR%%/common/src/org/hornetq/common/example/DummyXid.java
X%%EXAMPLESDIR%%/common/src/org/hornetq/common/example/SpawnedHornetQServer.java
X%%EXAMPLESDIR%%/common/src/org/hornetq/common/example/SpawnedVMSupport.java
X%%EXAMPLESDIR%%/core/microcontainer/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/core/microcontainer/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/core/microcontainer/build.bat
X%%EXAMPLESDIR%%/core/microcontainer/build.sh
X%%EXAMPLESDIR%%/core/microcontainer/src/org/hornetq/core/example/EmbeddedMicroContainerExample.java
X%%EXAMPLESDIR%%/core/microcontainer/readme.html
X%%EXAMPLESDIR%%/core/microcontainer/build.xml
X%%EXAMPLESDIR%%/core/twitter-connector/build.sh
X%%EXAMPLESDIR%%/core/twitter-connector/build.bat
X%%EXAMPLESDIR%%/core/twitter-connector/build.xml
X%%EXAMPLESDIR%%/core/twitter-connector/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/core/twitter-connector/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/core/twitter-connector/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/core/twitter-connector/server0/client-jndi.properties
X%%EXAMPLESDIR%%/core/twitter-connector/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/core/twitter-connector/readme.html
X%%EXAMPLESDIR%%/core/twitter-connector/src/org/hornetq/core/example/TwitterConnectorExample.java
X%%EXAMPLESDIR%%/core/embedded/build.xml
X%%EXAMPLESDIR%%/core/embedded/readme.html
X%%EXAMPLESDIR%%/core/embedded/build.bat
X%%EXAMPLESDIR%%/core/embedded/src/org/hornetq/core/example/EmbeddedExample.java
X%%EXAMPLESDIR%%/core/embedded/build.sh
X%%EXAMPLESDIR%%/core/perf/server0/hornetq-configuration-messaging-lab.xml
X%%EXAMPLESDIR%%/core/perf/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/core/perf/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/core/perf/build.xml
X%%EXAMPLESDIR%%/core/perf/perf.properties
X%%EXAMPLESDIR%%/core/perf/build.bat
X%%EXAMPLESDIR%%/core/perf/build.sh
X%%EXAMPLESDIR%%/core/perf/src/org/hornetq/core/example/PerfParams.java
X%%EXAMPLESDIR%%/core/perf/src/org/hornetq/core/example/PerfBase.java
X%%EXAMPLESDIR%%/core/perf/src/org/hornetq/core/example/PerfListener.java
X%%EXAMPLESDIR%%/core/perf/src/org/hornetq/core/example/PerfSender.java
X%%EXAMPLESDIR%%/core/embedded-remote/readme.html
X%%EXAMPLESDIR%%/core/embedded-remote/build.xml
X%%EXAMPLESDIR%%/core/embedded-remote/build.sh
X%%EXAMPLESDIR%%/core/embedded-remote/src/org/hornetq/core/example/EmbeddedServer.java
X%%EXAMPLESDIR%%/core/embedded-remote/src/org/hornetq/core/example/EmbeddedRemoteExample.java
X%%EXAMPLESDIR%%/core/embedded-remote/build.bat
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/build.sh
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/config/ant.properties
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/config/META-INF/application.xml
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/config/jndi.properties
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/build.bat
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/readme.html
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/src/org/hornetq/javaee/example/MDB_CMT_TxNotSupportedClientExample.java
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/src/org/hornetq/javaee/example/server/MDB_CMT_TxNotSupported.java
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/build.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/build.sh
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/build.bat
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/backup-server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/backup-server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/server/jms-ds.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/server/ra.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/build.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/config/ant.properties
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/config/META-INF/application.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/config/jndi.properties
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/live-server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/live-server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/src/org/hornetq/javaee/example/server/MDBRemoteFailoverStaticExample.java
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/src/org/hornetq/javaee/example/MDBRemoteFailoverStaticClientExample.java
X%%EXAMPLESDIR%%/javaee/jca-config/config/ant.properties
X%%EXAMPLESDIR%%/javaee/jca-config/config/jndi.properties
X%%EXAMPLESDIR%%/javaee/jca-config/config/META-INF/application.xml
X%%EXAMPLESDIR%%/javaee/jca-config/src/org/hornetq/javaee/example/server2/StatelessSender.java
X%%EXAMPLESDIR%%/javaee/jca-config/src/org/hornetq/javaee/example/server2/StatelessSenderService.java
X%%EXAMPLESDIR%%/javaee/jca-config/src/org/hornetq/javaee/example/server2/MDBQueueB.java
X%%EXAMPLESDIR%%/javaee/jca-config/src/org/hornetq/javaee/example/server/MDBQueueA.java
X%%EXAMPLESDIR%%/javaee/jca-config/src/org/hornetq/javaee/example/MDBRemoteClientExample.java
X%%EXAMPLESDIR%%/javaee/jca-config/build.bat
X%%EXAMPLESDIR%%/javaee/jca-config/readme.html
X%%EXAMPLESDIR%%/javaee/jca-config/server2/jms-remote-ds.xml
X%%EXAMPLESDIR%%/javaee/jca-config/server2/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/jca-config/server2/ra.xml
X%%EXAMPLESDIR%%/javaee/jca-config/build.xml
X%%EXAMPLESDIR%%/javaee/jca-config/build.sh
X%%EXAMPLESDIR%%/javaee/jca-config/server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/jca-config/server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/servlet-ssl/build.bat
X%%EXAMPLESDIR%%/javaee/servlet-ssl/readme.html
X%%EXAMPLESDIR%%/javaee/servlet-ssl/server/hornetq.example.truststore
X%%EXAMPLESDIR%%/javaee/servlet-ssl/server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/servlet-ssl/server/hornetq.example.keystore
X%%EXAMPLESDIR%%/javaee/servlet-ssl/server/server.xml
X%%EXAMPLESDIR%%/javaee/servlet-ssl/server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/servlet-ssl/config/WEB-INF/web.xml
X%%EXAMPLESDIR%%/javaee/servlet-ssl/config/META-INF/application.xml
X%%EXAMPLESDIR%%/javaee/servlet-ssl/config/jndi.properties
X%%EXAMPLESDIR%%/javaee/servlet-ssl/config/ant.properties
X%%EXAMPLESDIR%%/javaee/servlet-ssl/src/org/hornetq/javaee/example/ServletSSLTransportExample.java
X%%EXAMPLESDIR%%/javaee/servlet-ssl/build.xml
X%%EXAMPLESDIR%%/javaee/servlet-ssl/build.sh
X%%EXAMPLESDIR%%/javaee/xarecovery/config/jndi.properties
X%%EXAMPLESDIR%%/javaee/xarecovery/config/ant.properties
X%%EXAMPLESDIR%%/javaee/xarecovery/build.sh
X%%EXAMPLESDIR%%/javaee/xarecovery/build.xml
X%%EXAMPLESDIR%%/javaee/xarecovery/readme.html
X%%EXAMPLESDIR%%/javaee/xarecovery/src/org/hornetq/javaee/example/server/XARecoveryExampleService.java
X%%EXAMPLESDIR%%/javaee/xarecovery/src/org/hornetq/javaee/example/server/XARecoveryExampleBean.java
X%%EXAMPLESDIR%%/javaee/xarecovery/src/org/hornetq/javaee/example/XARecoveryExample.java
X%%EXAMPLESDIR%%/javaee/xarecovery/server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/xarecovery/server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/xarecovery/build.bat
X%%EXAMPLESDIR%%/javaee/hajndi/readme.html
X%%EXAMPLESDIR%%/javaee/hajndi/build.bat
X%%EXAMPLESDIR%%/javaee/hajndi/build.sh
X%%EXAMPLESDIR%%/javaee/hajndi/config/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/hajndi/config/hornetq-queues.xml
X%%EXAMPLESDIR%%/javaee/hajndi/config/META-INF/application.xml
X%%EXAMPLESDIR%%/javaee/hajndi/build.xml
X%%EXAMPLESDIR%%/javaee/hajndi/src/org/hornetq/javaee/example/HAJNDIExample.java
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover/build.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover/config/ant.properties
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover/config/jndi.properties
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover/config/META-INF/application.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover/live-server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover/live-server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover/src/org/hornetq/javaee/example/server/MDBRemoteFailoverExample.java
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover/src/org/hornetq/javaee/example/MDBRemoteFailoverClientExample.java
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover/build.bat
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover/server/jms-ds.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover/server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover/server/ra.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover/server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover/backup-server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover/backup-server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/mdb-remote-failover/build.sh
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/build.xml
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/config/META-INF/application.xml
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/config/ant.properties
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/config/jndi.properties
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/build.bat
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/src/org/hornetq/javaee/example/server/MDB_CMT_TxLocalExample.java
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/src/org/hornetq/javaee/example/MDB_CMT_TxLocalClientExample.java
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/readme.html
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/build.sh
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/mdb-message-selector/readme.html
X%%EXAMPLESDIR%%/javaee/mdb-message-selector/build.bat
X%%EXAMPLESDIR%%/javaee/mdb-message-selector/build.sh
X%%EXAMPLESDIR%%/javaee/mdb-message-selector/config/jndi.properties
X%%EXAMPLESDIR%%/javaee/mdb-message-selector/config/ant.properties
X%%EXAMPLESDIR%%/javaee/mdb-message-selector/config/META-INF/application.xml
X%%EXAMPLESDIR%%/javaee/mdb-message-selector/build.xml
X%%EXAMPLESDIR%%/javaee/mdb-message-selector/server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/mdb-message-selector/server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/mdb-message-selector/src/org/hornetq/javaee/example/MDBMessageSelectorClientExample.java
X%%EXAMPLESDIR%%/javaee/mdb-message-selector/src/org/hornetq/javaee/example/server/MDBMessageSelectorExample.java
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/src/org/hornetq/javaee/example/server/MDB_CMT_TxRequiredExample.java
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/src/org/hornetq/javaee/example/MDB_CMT_TxRequiredClientExample.java
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/config/ant.properties
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/config/META-INF/application.xml
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/config/jndi.properties
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/build.sh
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/build.xml
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/readme.html
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/build.bat
X%%EXAMPLESDIR%%/javaee/common/build.xml
X%%EXAMPLESDIR%%/javaee/common/config/ant.properties
X%%EXAMPLESDIR%%/javaee/mdb-bmt/server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/mdb-bmt/server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/mdb-bmt/build.xml
X%%EXAMPLESDIR%%/javaee/mdb-bmt/build.sh
X%%EXAMPLESDIR%%/javaee/mdb-bmt/src/org/hornetq/javaee/example/server/MDB_BMTExample.java
X%%EXAMPLESDIR%%/javaee/mdb-bmt/src/org/hornetq/javaee/example/MDB_BMTClientExample.java
X%%EXAMPLESDIR%%/javaee/mdb-bmt/build.bat
X%%EXAMPLESDIR%%/javaee/mdb-bmt/config/ant.properties
X%%EXAMPLESDIR%%/javaee/mdb-bmt/config/META-INF/application.xml
X%%EXAMPLESDIR%%/javaee/mdb-bmt/config/jndi.properties
X%%EXAMPLESDIR%%/javaee/mdb-bmt/readme.html
X%%EXAMPLESDIR%%/javaee/mdb-tx-send/src/org/hornetq/javaee/example/server/MDBMessageSendTxExample.java
X%%EXAMPLESDIR%%/javaee/mdb-tx-send/src/org/hornetq/javaee/example/MDBMessageSendTxClientExample.java
X%%EXAMPLESDIR%%/javaee/mdb-tx-send/server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/mdb-tx-send/server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/mdb-tx-send/build.xml
X%%EXAMPLESDIR%%/javaee/mdb-tx-send/config/jndi.properties
X%%EXAMPLESDIR%%/javaee/mdb-tx-send/config/ant.properties
X%%EXAMPLESDIR%%/javaee/mdb-tx-send/config/META-INF/application.xml
X%%EXAMPLESDIR%%/javaee/mdb-tx-send/build.sh
X%%EXAMPLESDIR%%/javaee/mdb-tx-send/readme.html
X%%EXAMPLESDIR%%/javaee/mdb-tx-send/build.bat
X%%EXAMPLESDIR%%/javaee/servlet-transport/build.bat
X%%EXAMPLESDIR%%/javaee/servlet-transport/config/WEB-INF/web.xml
X%%EXAMPLESDIR%%/javaee/servlet-transport/config/META-INF/application.xml
X%%EXAMPLESDIR%%/javaee/servlet-transport/config/jndi.properties
X%%EXAMPLESDIR%%/javaee/servlet-transport/config/ant.properties
X%%EXAMPLESDIR%%/javaee/servlet-transport/build.xml
X%%EXAMPLESDIR%%/javaee/servlet-transport/server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/servlet-transport/server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/servlet-transport/build.sh
X%%EXAMPLESDIR%%/javaee/servlet-transport/readme.html
X%%EXAMPLESDIR%%/javaee/servlet-transport/src/org/hornetq/javaee/example/ServletTransportExample.java
X%%EXAMPLESDIR%%/javaee/jca-remote/src/org/hornetq/javaee/example/server/MDBQueue.java
X%%EXAMPLESDIR%%/javaee/jca-remote/src/org/hornetq/javaee/example/MDBRemoteServerClientExample.java
X%%EXAMPLESDIR%%/javaee/jca-remote/config/client.jndi.properties
X%%EXAMPLESDIR%%/javaee/jca-remote/config/ant.properties
X%%EXAMPLESDIR%%/javaee/jca-remote/config/META-INF/application.xml
X%%EXAMPLESDIR%%/javaee/jca-remote/build.bat
X%%EXAMPLESDIR%%/javaee/jca-remote/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/jca-remote/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/jca-remote/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/javaee/jca-remote/server0/client-jndi.properties
X%%EXAMPLESDIR%%/javaee/jca-remote/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/javaee/jca-remote/readme.html
X%%EXAMPLESDIR%%/javaee/jca-remote/build.sh
X%%EXAMPLESDIR%%/javaee/jca-remote/server/jms-ds.xml
X%%EXAMPLESDIR%%/javaee/jca-remote/server/ra.xml
X%%EXAMPLESDIR%%/javaee/jca-remote/server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/jca-remote/server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/jca-remote/build.xml
X%%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/build.xml
X%%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/src/org/hornetq/javaee/example/server/MDB_CMT_SetRollbackOnlyExample.java
X%%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/src/org/hornetq/javaee/example/MDB_CMT_SetRollbackOnlyClientExample.java
X%%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/config/META-INF/application.xml
X%%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/config/jndi.properties
X%%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/config/ant.properties
X%%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/build.bat
X%%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/readme.html
X%%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/build.sh
X%%EXAMPLESDIR%%/javaee/jms-bridge/config/META-INF/application.xml
X%%EXAMPLESDIR%%/javaee/jms-bridge/config/ant.properties
X%%EXAMPLESDIR%%/javaee/jms-bridge/config/jndi.properties
X%%EXAMPLESDIR%%/javaee/jms-bridge/build.sh
X%%EXAMPLESDIR%%/javaee/jms-bridge/build.bat
X%%EXAMPLESDIR%%/javaee/jms-bridge/readme.html
X%%EXAMPLESDIR%%/javaee/jms-bridge/server/jms-bridge-jboss-beans.xml
X%%EXAMPLESDIR%%/javaee/jms-bridge/server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/jms-bridge/server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/jms-bridge/src/org/hornetq/javaee/example/JMSBridgeExample.java
X%%EXAMPLESDIR%%/javaee/jms-bridge/build.xml
X%%EXAMPLESDIR%%/javaee/ejb-jms-transaction/readme.html
X%%EXAMPLESDIR%%/javaee/ejb-jms-transaction/config/ant.properties
X%%EXAMPLESDIR%%/javaee/ejb-jms-transaction/config/META-INF/application.xml
X%%EXAMPLESDIR%%/javaee/ejb-jms-transaction/config/jndi.properties
X%%EXAMPLESDIR%%/javaee/ejb-jms-transaction/build.bat
X%%EXAMPLESDIR%%/javaee/ejb-jms-transaction/server/mysql-ds.xml
X%%EXAMPLESDIR%%/javaee/ejb-jms-transaction/server/hornetq-jms.xml
X%%EXAMPLESDIR%%/javaee/ejb-jms-transaction/server/hornetq-configuration.xml
X%%EXAMPLESDIR%%/javaee/ejb-jms-transaction/build.sh
X%%EXAMPLESDIR%%/javaee/ejb-jms-transaction/build.xml
X%%EXAMPLESDIR%%/javaee/ejb-jms-transaction/src/org/hornetq/javaee/example/EJBClientExample.java
X%%EXAMPLESDIR%%/javaee/ejb-jms-transaction/src/org/hornetq/javaee/example/server/SendMessageService.java
X%%EXAMPLESDIR%%/javaee/ejb-jms-transaction/src/org/hornetq/javaee/example/server/SendMessageBean.java
X%%EXAMPLESDIR%%/jms/transaction-failover/src/org/hornetq/jms/example/TransactionFailoverExample.java
X%%EXAMPLESDIR%%/jms/transaction-failover/build.bat
X%%EXAMPLESDIR%%/jms/transaction-failover/build.sh
X%%EXAMPLESDIR%%/jms/transaction-failover/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/transaction-failover/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/transaction-failover/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/transaction-failover/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/transaction-failover/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/transaction-failover/build.xml
X%%EXAMPLESDIR%%/jms/transaction-failover/readme.html
X%%EXAMPLESDIR%%/jms/transaction-failover/server1/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/transaction-failover/server1/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/transaction-failover/server1/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/transaction-failover/server1/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/transaction-failover/server1/client-jndi.properties
X%%EXAMPLESDIR%%/jms/large-message/build.bat
X%%EXAMPLESDIR%%/jms/large-message/build.sh
X%%EXAMPLESDIR%%/jms/large-message/src/org/hornetq/jms/example/LargeMessageExample.java
X%%EXAMPLESDIR%%/jms/large-message/build.xml
X%%EXAMPLESDIR%%/jms/large-message/ant.properties
X%%EXAMPLESDIR%%/jms/large-message/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/large-message/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/large-message/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/large-message/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/large-message/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/large-message/readme.html
X%%EXAMPLESDIR%%/jms/temp-queue/build.bat
X%%EXAMPLESDIR%%/jms/temp-queue/build.sh
X%%EXAMPLESDIR%%/jms/temp-queue/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/temp-queue/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/temp-queue/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/temp-queue/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/temp-queue/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/temp-queue/src/org/hornetq/jms/example/TemporaryQueueExample.java
X%%EXAMPLESDIR%%/jms/temp-queue/build.xml
X%%EXAMPLESDIR%%/jms/temp-queue/readme.html
X%%EXAMPLESDIR%%/jms/topic-selector-example2/build.sh
X%%EXAMPLESDIR%%/jms/topic-selector-example2/build.xml
X%%EXAMPLESDIR%%/jms/topic-selector-example2/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/topic-selector-example2/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/topic-selector-example2/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/topic-selector-example2/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/topic-selector-example2/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/topic-selector-example2/build.bat
X%%EXAMPLESDIR%%/jms/topic-selector-example2/readme.html
X%%EXAMPLESDIR%%/jms/topic-selector-example2/src/org/hornetq/jms/example/TopicSelectorExample2.java
X%%EXAMPLESDIR%%/jms/client-kickoff/src/org/hornetq/jms/example/ClientKickoffExample.java
X%%EXAMPLESDIR%%/jms/client-kickoff/readme.html
X%%EXAMPLESDIR%%/jms/client-kickoff/build.xml
X%%EXAMPLESDIR%%/jms/client-kickoff/build.sh
X%%EXAMPLESDIR%%/jms/client-kickoff/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/client-kickoff/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/client-kickoff/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/client-kickoff/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/client-kickoff/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/client-kickoff/build.bat
X%%EXAMPLESDIR%%/jms/client-kickoff/ant.properties
X%%EXAMPLESDIR%%/jms/stomp/src/org/hornetq/jms/example/StompExample.java
X%%EXAMPLESDIR%%/jms/stomp/readme.html
X%%EXAMPLESDIR%%/jms/stomp/build.xml
X%%EXAMPLESDIR%%/jms/stomp/build.sh
X%%EXAMPLESDIR%%/jms/stomp/build.bat
X%%EXAMPLESDIR%%/jms/stomp/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/stomp/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/stomp/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/stomp/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/stomp/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/xa-with-jta/readme.html
X%%EXAMPLESDIR%%/jms/xa-with-jta/build.bat
X%%EXAMPLESDIR%%/jms/xa-with-jta/build.sh
X%%EXAMPLESDIR%%/jms/xa-with-jta/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/xa-with-jta/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/xa-with-jta/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/xa-with-jta/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/xa-with-jta/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/xa-with-jta/src/org/hornetq/jms/example/XAwithJTAExample.java
X%%EXAMPLESDIR%%/jms/xa-with-jta/build.xml
X%%EXAMPLESDIR%%/jms/http-transport/src/org/hornetq/jms/example/HttpTransportExample.java
X%%EXAMPLESDIR%%/jms/http-transport/build.bat
X%%EXAMPLESDIR%%/jms/http-transport/readme.html
X%%EXAMPLESDIR%%/jms/http-transport/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/http-transport/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/http-transport/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/http-transport/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/http-transport/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/http-transport/build.sh
X%%EXAMPLESDIR%%/jms/http-transport/build.xml
X%%EXAMPLESDIR%%/jms/clustered-durable-subscription/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/clustered-durable-subscription/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/clustered-durable-subscription/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/clustered-durable-subscription/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-durable-subscription/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/clustered-durable-subscription/readme.html
X%%EXAMPLESDIR%%/jms/clustered-durable-subscription/build.xml
X%%EXAMPLESDIR%%/jms/clustered-durable-subscription/build.sh
X%%EXAMPLESDIR%%/jms/clustered-durable-subscription/build.bat
X%%EXAMPLESDIR%%/jms/clustered-durable-subscription/src/org/hornetq/jms/example/ClusteredDurableSubscriptionExample.java
X%%EXAMPLESDIR%%/jms/clustered-durable-subscription/server1/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/clustered-durable-subscription/server1/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/clustered-durable-subscription/server1/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/clustered-durable-subscription/server1/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-durable-subscription/server1/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/stop-server-failover/readme.html
X%%EXAMPLESDIR%%/jms/stop-server-failover/build.sh
X%%EXAMPLESDIR%%/jms/stop-server-failover/build.xml
X%%EXAMPLESDIR%%/jms/stop-server-failover/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/stop-server-failover/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/stop-server-failover/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/stop-server-failover/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/stop-server-failover/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/stop-server-failover/src/org/hornetq/jms/example/StopServerFailoverExample.java
X%%EXAMPLESDIR%%/jms/stop-server-failover/build.bat
X%%EXAMPLESDIR%%/jms/stop-server-failover/server1/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/stop-server-failover/server1/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/stop-server-failover/server1/client-jndi.properties
X%%EXAMPLESDIR%%/jms/stop-server-failover/server1/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/stop-server-failover/server1/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/non-transaction-failover/server1/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/non-transaction-failover/server1/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/non-transaction-failover/server1/client-jndi.properties
X%%EXAMPLESDIR%%/jms/non-transaction-failover/server1/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/non-transaction-failover/server1/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/non-transaction-failover/build.xml
X%%EXAMPLESDIR%%/jms/non-transaction-failover/readme.html
X%%EXAMPLESDIR%%/jms/non-transaction-failover/src/org/hornetq/jms/example/NonTransactionFailoverExample.java
X%%EXAMPLESDIR%%/jms/non-transaction-failover/build.bat
X%%EXAMPLESDIR%%/jms/non-transaction-failover/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/non-transaction-failover/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/non-transaction-failover/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/non-transaction-failover/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/non-transaction-failover/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/non-transaction-failover/build.sh
X%%EXAMPLESDIR%%/jms/queue-selector/src/org/hornetq/jms/example/QueueSelectorExample.java
X%%EXAMPLESDIR%%/jms/queue-selector/readme.html
X%%EXAMPLESDIR%%/jms/queue-selector/build.bat
X%%EXAMPLESDIR%%/jms/queue-selector/build.sh
X%%EXAMPLESDIR%%/jms/queue-selector/build.xml
X%%EXAMPLESDIR%%/jms/queue-selector/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/queue-selector/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/queue-selector/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/queue-selector/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/queue-selector/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/durable-subscription/build.sh
X%%EXAMPLESDIR%%/jms/durable-subscription/build.xml
X%%EXAMPLESDIR%%/jms/durable-subscription/readme.html
X%%EXAMPLESDIR%%/jms/durable-subscription/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/durable-subscription/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/durable-subscription/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/durable-subscription/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/durable-subscription/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/durable-subscription/build.bat
X%%EXAMPLESDIR%%/jms/durable-subscription/src/org/hornetq/jms/example/DurableSubscriptionExample.java
X%%EXAMPLESDIR%%/jms/clustered-queue/readme.html
X%%EXAMPLESDIR%%/jms/clustered-queue/server1/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/clustered-queue/server1/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/clustered-queue/server1/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/clustered-queue/server1/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-queue/server1/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/clustered-queue/build.bat
X%%EXAMPLESDIR%%/jms/clustered-queue/build.sh
X%%EXAMPLESDIR%%/jms/clustered-queue/src/org/hornetq/jms/example/ClusteredQueueExample.java
X%%EXAMPLESDIR%%/jms/clustered-queue/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/clustered-queue/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/clustered-queue/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-queue/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/clustered-queue/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/clustered-queue/build.xml
X%%EXAMPLESDIR%%/jms/message-group2/readme.html
X%%EXAMPLESDIR%%/jms/message-group2/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/message-group2/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/message-group2/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/message-group2/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/message-group2/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/message-group2/build.bat
X%%EXAMPLESDIR%%/jms/message-group2/src/org/hornetq/jms/example/MessageGroup2Example.java
X%%EXAMPLESDIR%%/jms/message-group2/build.sh
X%%EXAMPLESDIR%%/jms/message-group2/build.xml
X%%EXAMPLESDIR%%/jms/queue/src/org/hornetq/jms/example/QueueExample.java
X%%EXAMPLESDIR%%/jms/queue/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/queue/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/queue/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/queue/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/queue/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/queue/build.xml
X%%EXAMPLESDIR%%/jms/queue/build.sh
X%%EXAMPLESDIR%%/jms/queue/readme.html
X%%EXAMPLESDIR%%/jms/queue/build.bat
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server1/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server1/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server1/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server1/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server1/client-jndi.properties
X%%EXAMPLESDIR%%/jms/symmetric-cluster/build.bat
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server2/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server2/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server2/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server2/client-jndi.properties
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server2/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server5/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server5/client-jndi.properties
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server5/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server5/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server5/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/readme.html
X%%EXAMPLESDIR%%/jms/symmetric-cluster/src/org/hornetq/jms/example/SymmetricClusterExample.java
X%%EXAMPLESDIR%%/jms/symmetric-cluster/ant.properties
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server4/client-jndi.properties
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server4/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server4/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server4/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server4/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/build.sh
X%%EXAMPLESDIR%%/jms/symmetric-cluster/build.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server3/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server3/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server3/client-jndi.properties
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server3/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/symmetric-cluster/server3/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/clustered-standalone/build.bat
X%%EXAMPLESDIR%%/jms/clustered-standalone/src/org/hornetq/jms/example/ClusteredStandaloneExample.java
X%%EXAMPLESDIR%%/jms/clustered-standalone/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-standalone/build.sh
X%%EXAMPLESDIR%%/jms/clustered-standalone/server2/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-standalone/build.xml
X%%EXAMPLESDIR%%/jms/clustered-standalone/server1/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-standalone/readme.html
X%%EXAMPLESDIR%%/jms/applet/build.sh
X%%EXAMPLESDIR%%/jms/applet/build.xml
X%%EXAMPLESDIR%%/jms/applet/src/org/hornetq/jms/example/HttpStaticFileServerHandler.java
X%%EXAMPLESDIR%%/jms/applet/src/org/hornetq/jms/example/AppletExample.java
X%%EXAMPLESDIR%%/jms/applet/src/org/hornetq/jms/example/HttpStaticFileServerPipelineFactory.java
X%%EXAMPLESDIR%%/jms/applet/src/org/hornetq/jms/example/HttpStaticFileServer.java
X%%EXAMPLESDIR%%/jms/applet/build.bat
X%%EXAMPLESDIR%%/jms/applet/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/applet/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/applet/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/applet/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/applet/readme.html
X%%EXAMPLESDIR%%/jms/applet/applet.html
X%%EXAMPLESDIR%%/jms/topic-hierarchies/build.sh
X%%EXAMPLESDIR%%/jms/topic-hierarchies/build.xml
X%%EXAMPLESDIR%%/jms/topic-hierarchies/readme.html
X%%EXAMPLESDIR%%/jms/topic-hierarchies/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/topic-hierarchies/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/topic-hierarchies/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/topic-hierarchies/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/topic-hierarchies/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/topic-hierarchies/src/org/hornetq/jms/example/TopicHierarchyExample.java
X%%EXAMPLESDIR%%/jms/topic-hierarchies/build.bat
X%%EXAMPLESDIR%%/jms/clustered-grouping/server2/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/clustered-grouping/server2/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/clustered-grouping/server2/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/clustered-grouping/server2/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/clustered-grouping/server2/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-grouping/readme.html
X%%EXAMPLESDIR%%/jms/clustered-grouping/build.bat
X%%EXAMPLESDIR%%/jms/clustered-grouping/src/org/hornetq/jms/example/ClusteredGroupingExample.java
X%%EXAMPLESDIR%%/jms/clustered-grouping/server1/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/clustered-grouping/server1/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/clustered-grouping/server1/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/clustered-grouping/server1/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-grouping/server1/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/clustered-grouping/build.sh
X%%EXAMPLESDIR%%/jms/clustered-grouping/build.xml
X%%EXAMPLESDIR%%/jms/clustered-grouping/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/clustered-grouping/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-grouping/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/clustered-grouping/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/clustered-grouping/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/application-layer-failover/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/application-layer-failover/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/application-layer-failover/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/application-layer-failover/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/application-layer-failover/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/application-layer-failover/readme.html
X%%EXAMPLESDIR%%/jms/application-layer-failover/build.xml
X%%EXAMPLESDIR%%/jms/application-layer-failover/src/org/hornetq/jms/example/ApplicationLayerFailoverExample.java
X%%EXAMPLESDIR%%/jms/application-layer-failover/server1/client-jndi.properties
X%%EXAMPLESDIR%%/jms/application-layer-failover/server1/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/application-layer-failover/server1/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/application-layer-failover/server1/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/application-layer-failover/server1/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/application-layer-failover/build.sh
X%%EXAMPLESDIR%%/jms/application-layer-failover/build.bat
X%%EXAMPLESDIR%%/jms/topic-selector-example1/src/org/hornetq/jms/example/TopicSelectorExample1.java
X%%EXAMPLESDIR%%/jms/topic-selector-example1/build.bat
X%%EXAMPLESDIR%%/jms/topic-selector-example1/readme.html
X%%EXAMPLESDIR%%/jms/topic-selector-example1/build.xml
X%%EXAMPLESDIR%%/jms/topic-selector-example1/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/topic-selector-example1/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/topic-selector-example1/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/topic-selector-example1/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/topic-selector-example1/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/topic-selector-example1/build.sh
X%%EXAMPLESDIR%%/jms/request-reply/build.sh
X%%EXAMPLESDIR%%/jms/request-reply/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/request-reply/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/request-reply/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/request-reply/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/request-reply/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/request-reply/readme.html
X%%EXAMPLESDIR%%/jms/request-reply/build.bat
X%%EXAMPLESDIR%%/jms/request-reply/src/org/hornetq/jms/example/RequestReplyExample.java
X%%EXAMPLESDIR%%/jms/request-reply/build.xml
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/build.xml
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/server1/client-jndi.properties
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/server1/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/server1/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/server1/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/server1/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/build.sh
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/readme.html
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/server2/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/server2/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/server2/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/server2/client-jndi.properties
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/server2/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/build.bat
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/client-side-load-balancing/src/org/hornetq/jms/example/ClientSideLoadBalancingExample.java
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server2/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server2/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server2/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server2/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server2/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server2/jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server1/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server1/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server1/jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server1/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server1/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server1/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/build.xml
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/src/org/hornetq/jms/example/StaticClusteredQueueExample.java
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/readme.html
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server3/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server3/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server3/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server3/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server3/jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server3/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/build.sh
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server0/jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/clustered-static-discovery/build.bat
X%%EXAMPLESDIR%%/jms/jmx/ant.properties
X%%EXAMPLESDIR%%/jms/jmx/src/org/hornetq/jms/example/JMXExample.java
X%%EXAMPLESDIR%%/jms/jmx/build.xml
X%%EXAMPLESDIR%%/jms/jmx/build.sh
X%%EXAMPLESDIR%%/jms/jmx/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/jmx/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/jmx/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/jmx/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/jmx/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/jmx/readme.html
X%%EXAMPLESDIR%%/jms/jmx/build.bat
X%%EXAMPLESDIR%%/jms/producer-rate-limit/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/producer-rate-limit/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/producer-rate-limit/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/producer-rate-limit/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/producer-rate-limit/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/producer-rate-limit/src/org/hornetq/jms/example/ProducerRateLimitExample.java
X%%EXAMPLESDIR%%/jms/producer-rate-limit/build.sh
X%%EXAMPLESDIR%%/jms/producer-rate-limit/build.xml
X%%EXAMPLESDIR%%/jms/producer-rate-limit/readme.html
X%%EXAMPLESDIR%%/jms/producer-rate-limit/build.bat
X%%EXAMPLESDIR%%/jms/topic/readme.html
X%%EXAMPLESDIR%%/jms/topic/build.bat
X%%EXAMPLESDIR%%/jms/topic/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/topic/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/topic/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/topic/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/topic/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/topic/build.xml
X%%EXAMPLESDIR%%/jms/topic/src/org/hornetq/jms/example/TopicExample.java
X%%EXAMPLESDIR%%/jms/topic/build.sh
X%%EXAMPLESDIR%%/jms/clustered-topic/build.sh
X%%EXAMPLESDIR%%/jms/clustered-topic/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/clustered-topic/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/clustered-topic/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-topic/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/clustered-topic/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/clustered-topic/build.xml
X%%EXAMPLESDIR%%/jms/clustered-topic/src/org/hornetq/jms/example/ClusteredTopicExample.java
X%%EXAMPLESDIR%%/jms/clustered-topic/build.bat
X%%EXAMPLESDIR%%/jms/clustered-topic/readme.html
X%%EXAMPLESDIR%%/jms/clustered-topic/server1/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/clustered-topic/server1/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/clustered-topic/server1/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/clustered-topic/server1/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-topic/server1/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/last-value-queue/build.bat
X%%EXAMPLESDIR%%/jms/last-value-queue/build.xml
X%%EXAMPLESDIR%%/jms/last-value-queue/build.sh
X%%EXAMPLESDIR%%/jms/last-value-queue/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/last-value-queue/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/last-value-queue/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/last-value-queue/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/last-value-queue/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/last-value-queue/readme.html
X%%EXAMPLESDIR%%/jms/last-value-queue/src/org/hornetq/jms/example/LastValueQueueExample.java
X%%EXAMPLESDIR%%/jms/embedded-simple/readme.html
X%%EXAMPLESDIR%%/jms/embedded-simple/src/org/hornetq/jms/example/EmbeddedExample.java
X%%EXAMPLESDIR%%/jms/embedded-simple/build.bat
X%%EXAMPLESDIR%%/jms/embedded-simple/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/embedded-simple/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/embedded-simple/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/embedded-simple/build.sh
X%%EXAMPLESDIR%%/jms/embedded-simple/build.xml
X%%EXAMPLESDIR%%/jms/reattach-node/build.xml
X%%EXAMPLESDIR%%/jms/reattach-node/build.sh
X%%EXAMPLESDIR%%/jms/reattach-node/readme.html
X%%EXAMPLESDIR%%/jms/reattach-node/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/reattach-node/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/reattach-node/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/reattach-node/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/reattach-node/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/reattach-node/src/org/hornetq/jms/example/ReattachExample.java
X%%EXAMPLESDIR%%/jms/reattach-node/build.bat
X%%EXAMPLESDIR%%/jms/ssl-enabled/build.sh
X%%EXAMPLESDIR%%/jms/ssl-enabled/build.xml
X%%EXAMPLESDIR%%/jms/ssl-enabled/readme.html
X%%EXAMPLESDIR%%/jms/ssl-enabled/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/ssl-enabled/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/ssl-enabled/server0/hornetq.example.truststore
X%%EXAMPLESDIR%%/jms/ssl-enabled/server0/hornetq.example.keystore
X%%EXAMPLESDIR%%/jms/ssl-enabled/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/ssl-enabled/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/ssl-enabled/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/ssl-enabled/build.bat
X%%EXAMPLESDIR%%/jms/ssl-enabled/src/org/hornetq/jms/example/SSLExample.java
X%%EXAMPLESDIR%%/jms/perf/perf.properties
X%%EXAMPLESDIR%%/jms/perf/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/perf/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/perf/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/perf/server0/hornetq-configuration-messaging-lab.xml
X%%EXAMPLESDIR%%/jms/perf/build.bat
X%%EXAMPLESDIR%%/jms/perf/build.sh
X%%EXAMPLESDIR%%/jms/perf/src/org/hornetq/jms/example/PerfParams.java
X%%EXAMPLESDIR%%/jms/perf/src/org/hornetq/jms/example/PerfBase.java
X%%EXAMPLESDIR%%/jms/perf/src/org/hornetq/jms/example/PerfListener.java
X%%EXAMPLESDIR%%/jms/perf/src/org/hornetq/jms/example/PerfSender.java
X%%EXAMPLESDIR%%/jms/perf/jndi.properties
X%%EXAMPLESDIR%%/jms/perf/build.xml
X%%EXAMPLESDIR%%/jms/xa-receive/readme.html
X%%EXAMPLESDIR%%/jms/xa-receive/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/xa-receive/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/xa-receive/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/xa-receive/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/xa-receive/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/xa-receive/src/org/hornetq/jms/example/XAReceiveExample.java
X%%EXAMPLESDIR%%/jms/xa-receive/build.bat
X%%EXAMPLESDIR%%/jms/xa-receive/build.sh
X%%EXAMPLESDIR%%/jms/xa-receive/build.xml
X%%EXAMPLESDIR%%/jms/jaas/build.xml
X%%EXAMPLESDIR%%/jms/jaas/src/org/hornetq/jms/example/ExampleConfiguration.java
X%%EXAMPLESDIR%%/jms/jaas/src/org/hornetq/jms/example/ExampleCallbackHandler.java
X%%EXAMPLESDIR%%/jms/jaas/src/org/hornetq/jms/example/ExampleLoginModule.java
X%%EXAMPLESDIR%%/jms/jaas/src/org/hornetq/jms/example/JAASExample.java
X%%EXAMPLESDIR%%/jms/jaas/build.sh
X%%EXAMPLESDIR%%/jms/jaas/build.bat
X%%EXAMPLESDIR%%/jms/jaas/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/jaas/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/jaas/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/jaas/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/jaas/readme.html
X%%EXAMPLESDIR%%/jms/message-group/build.sh
X%%EXAMPLESDIR%%/jms/message-group/src/org/hornetq/jms/example/MessageGroupExample.java
X%%EXAMPLESDIR%%/jms/message-group/build.xml
X%%EXAMPLESDIR%%/jms/message-group/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/message-group/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/message-group/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/message-group/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/message-group/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/message-group/readme.html
X%%EXAMPLESDIR%%/jms/message-group/build.bat
X%%EXAMPLESDIR%%/jms/interceptor/readme.html
X%%EXAMPLESDIR%%/jms/interceptor/build.bat
X%%EXAMPLESDIR%%/jms/interceptor/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/interceptor/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/interceptor/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/interceptor/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/interceptor/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/interceptor/build.sh
X%%EXAMPLESDIR%%/jms/interceptor/src/org/hornetq/jms/example/SimpleInterceptor.java
X%%EXAMPLESDIR%%/jms/interceptor/src/org/hornetq/jms/example/InterceptorExample.java
X%%EXAMPLESDIR%%/jms/interceptor/build.xml
X%%EXAMPLESDIR%%/jms/pre-acknowledge/build.xml
X%%EXAMPLESDIR%%/jms/pre-acknowledge/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/pre-acknowledge/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/pre-acknowledge/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/pre-acknowledge/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/pre-acknowledge/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/pre-acknowledge/readme.html
X%%EXAMPLESDIR%%/jms/pre-acknowledge/build.sh
X%%EXAMPLESDIR%%/jms/pre-acknowledge/build.bat
X%%EXAMPLESDIR%%/jms/pre-acknowledge/src/org/hornetq/jms/example/PreacknowledgeExample.java
X%%EXAMPLESDIR%%/jms/queue-message-redistribution/build.sh
X%%EXAMPLESDIR%%/jms/queue-message-redistribution/build.xml
X%%EXAMPLESDIR%%/jms/queue-message-redistribution/readme.html
X%%EXAMPLESDIR%%/jms/queue-message-redistribution/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/queue-message-redistribution/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/queue-message-redistribution/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/queue-message-redistribution/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/queue-message-redistribution/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/queue-message-redistribution/build.bat
X%%EXAMPLESDIR%%/jms/queue-message-redistribution/server1/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/queue-message-redistribution/server1/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/queue-message-redistribution/server1/client-jndi.properties
X%%EXAMPLESDIR%%/jms/queue-message-redistribution/server1/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/queue-message-redistribution/server1/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/queue-message-redistribution/src/org/hornetq/jms/example/QueueMessageRedistributionExample.java
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/build.bat
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/build.sh
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/build.xml
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/server2/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/server2/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/server2/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/server2/client-jndi.properties
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/server2/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/server1/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/server1/client-jndi.properties
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/server1/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/server1/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/server1/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/multiple-failover-failback/src/org/hornetq/jms/example/MultipleFailoverFailbackExample.java
X%%EXAMPLESDIR%%/jms/bridge/build.bat
X%%EXAMPLESDIR%%/jms/bridge/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/bridge/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/bridge/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/bridge/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/bridge/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/bridge/readme.html
X%%EXAMPLESDIR%%/jms/bridge/build.sh
X%%EXAMPLESDIR%%/jms/bridge/src/org/hornetq/jms/example/HatColourChangeTransformer.java
X%%EXAMPLESDIR%%/jms/bridge/src/org/hornetq/jms/example/BridgeExample.java
X%%EXAMPLESDIR%%/jms/bridge/build.xml
X%%EXAMPLESDIR%%/jms/bridge/server1/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/bridge/server1/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/bridge/server1/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/bridge/server1/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/bridge/server1/client-jndi.properties
X%%EXAMPLESDIR%%/jms/expiry/src/org/hornetq/jms/example/ExpiryExample.java
X%%EXAMPLESDIR%%/jms/expiry/build.sh
X%%EXAMPLESDIR%%/jms/expiry/readme.html
X%%EXAMPLESDIR%%/jms/expiry/build.bat
X%%EXAMPLESDIR%%/jms/expiry/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/expiry/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/expiry/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/expiry/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/expiry/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/expiry/build.xml
X%%EXAMPLESDIR%%/jms/queue-requestor/build.bat
X%%EXAMPLESDIR%%/jms/queue-requestor/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/queue-requestor/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/queue-requestor/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/queue-requestor/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/queue-requestor/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/queue-requestor/src/org/hornetq/jms/example/TextReverserService.java
X%%EXAMPLESDIR%%/jms/queue-requestor/src/org/hornetq/jms/example/QueueRequestorExample.java
X%%EXAMPLESDIR%%/jms/queue-requestor/build.sh
X%%EXAMPLESDIR%%/jms/queue-requestor/readme.html
X%%EXAMPLESDIR%%/jms/queue-requestor/build.xml
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/server1/jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/server1/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/server1/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/server1/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/server1/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/server1/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/readme.html
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/build.bat
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/server2/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/server2/jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/server2/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/server2/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/server2/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/server2/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/build.sh
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/server0/jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/src/org/hornetq/jms/example/ClusterStaticOnewayExample.java
X%%EXAMPLESDIR%%/jms/clustered-static-oneway/build.xml
X%%EXAMPLESDIR%%/jms/static-selector/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/static-selector/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/static-selector/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/static-selector/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/static-selector/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/static-selector/build.bat
X%%EXAMPLESDIR%%/jms/static-selector/build.sh
X%%EXAMPLESDIR%%/jms/static-selector/src/org/hornetq/jms/example/StaticSelectorExample.java
X%%EXAMPLESDIR%%/jms/static-selector/readme.html
X%%EXAMPLESDIR%%/jms/static-selector/build.xml
X%%EXAMPLESDIR%%/jms/management-notifications/build.bat
X%%EXAMPLESDIR%%/jms/management-notifications/build.sh
X%%EXAMPLESDIR%%/jms/management-notifications/src/org/hornetq/jms/example/ManagementNotificationExample.java
X%%EXAMPLESDIR%%/jms/management-notifications/readme.html
X%%EXAMPLESDIR%%/jms/management-notifications/build.xml
X%%EXAMPLESDIR%%/jms/management-notifications/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/management-notifications/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/management-notifications/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/management-notifications/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/management-notifications/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/send-acknowledgements/readme.html
X%%EXAMPLESDIR%%/jms/send-acknowledgements/build.sh
X%%EXAMPLESDIR%%/jms/send-acknowledgements/build.bat
X%%EXAMPLESDIR%%/jms/send-acknowledgements/src/org/hornetq/jms/example/SendAcknowledgementsExample.java
X%%EXAMPLESDIR%%/jms/send-acknowledgements/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/send-acknowledgements/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/send-acknowledgements/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/send-acknowledgements/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/send-acknowledgements/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/send-acknowledgements/build.xml
X%%EXAMPLESDIR%%/jms/message-priority/readme.html
X%%EXAMPLESDIR%%/jms/message-priority/build.xml
X%%EXAMPLESDIR%%/jms/message-priority/build.sh
X%%EXAMPLESDIR%%/jms/message-priority/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/message-priority/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/message-priority/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/message-priority/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/message-priority/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/message-priority/build.bat
X%%EXAMPLESDIR%%/jms/message-priority/src/org/hornetq/jms/example/MessagePriorityExample.java
X%%EXAMPLESDIR%%/jms/multiple-failover/build.xml
X%%EXAMPLESDIR%%/jms/multiple-failover/server1/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/multiple-failover/server1/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/multiple-failover/server1/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/multiple-failover/server1/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/multiple-failover/server1/client-jndi.properties
X%%EXAMPLESDIR%%/jms/multiple-failover/src/org/hornetq/jms/example/MultipleFailoverExample.java
X%%EXAMPLESDIR%%/jms/multiple-failover/server2/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/multiple-failover/server2/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/multiple-failover/server2/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/multiple-failover/server2/client-jndi.properties
X%%EXAMPLESDIR%%/jms/multiple-failover/server2/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/multiple-failover/build.bat
X%%EXAMPLESDIR%%/jms/multiple-failover/build.sh
X%%EXAMPLESDIR%%/jms/multiple-failover/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/multiple-failover/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/multiple-failover/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/multiple-failover/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/multiple-failover/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/management/build.sh
X%%EXAMPLESDIR%%/jms/management/build.xml
X%%EXAMPLESDIR%%/jms/management/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/management/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/management/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/management/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/management/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/management/src/org/hornetq/jms/example/ManagementExample.java
X%%EXAMPLESDIR%%/jms/management/readme.html
X%%EXAMPLESDIR%%/jms/management/build.bat
X%%EXAMPLESDIR%%/jms/instantiate-connection-factory/build.bat
X%%EXAMPLESDIR%%/jms/instantiate-connection-factory/readme.html
X%%EXAMPLESDIR%%/jms/instantiate-connection-factory/build.sh
X%%EXAMPLESDIR%%/jms/instantiate-connection-factory/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/instantiate-connection-factory/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/instantiate-connection-factory/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/instantiate-connection-factory/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/instantiate-connection-factory/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/instantiate-connection-factory/build.xml
X%%EXAMPLESDIR%%/jms/instantiate-connection-factory/src/org/hornetq/jms/example/InstantiateConnectionFactoryExample.java
X%%EXAMPLESDIR%%/jms/browser/src/org/hornetq/jms/example/QueueBrowserExample.java
X%%EXAMPLESDIR%%/jms/browser/build.xml
X%%EXAMPLESDIR%%/jms/browser/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/browser/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/browser/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/browser/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/browser/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/browser/readme.html
X%%EXAMPLESDIR%%/jms/browser/build.sh
X%%EXAMPLESDIR%%/jms/browser/build.bat
X%%EXAMPLESDIR%%/jms/security/src/org/hornetq/jms/example/SecurityExample.java
X%%EXAMPLESDIR%%/jms/security/build.bat
X%%EXAMPLESDIR%%/jms/security/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/security/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/security/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/security/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/security/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/security/build.xml
X%%EXAMPLESDIR%%/jms/security/readme.html
X%%EXAMPLESDIR%%/jms/security/build.sh
X%%EXAMPLESDIR%%/jms/transactional/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/transactional/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/transactional/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/transactional/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/transactional/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/transactional/readme.html
X%%EXAMPLESDIR%%/jms/transactional/build.xml
X%%EXAMPLESDIR%%/jms/transactional/src/org/hornetq/jms/example/TransactionalExample.java
X%%EXAMPLESDIR%%/jms/transactional/build.bat
X%%EXAMPLESDIR%%/jms/transactional/build.sh
X%%EXAMPLESDIR%%/jms/stomp-websockets/src/org/hornetq/jms/example/StompWebSocketExample.java
X%%EXAMPLESDIR%%/jms/stomp-websockets/readme.html
X%%EXAMPLESDIR%%/jms/stomp-websockets/server0/jndi.properties
X%%EXAMPLESDIR%%/jms/stomp-websockets/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/stomp-websockets/server0/logging.properties
X%%EXAMPLESDIR%%/jms/stomp-websockets/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/stomp-websockets/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/stomp-websockets/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/stomp-websockets/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/stomp-websockets/build.bat
X%%EXAMPLESDIR%%/jms/stomp-websockets/build.sh
X%%EXAMPLESDIR%%/jms/stomp-websockets/chat/chat.css
X%%EXAMPLESDIR%%/jms/stomp-websockets/chat/chat.js
X%%EXAMPLESDIR%%/jms/stomp-websockets/chat/stomp.js
X%%EXAMPLESDIR%%/jms/stomp-websockets/chat/index.html
X%%EXAMPLESDIR%%/jms/stomp-websockets/build.xml
X%%EXAMPLESDIR%%/jms/scheduled-message/build.xml
X%%EXAMPLESDIR%%/jms/scheduled-message/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/scheduled-message/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/scheduled-message/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/scheduled-message/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/scheduled-message/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/scheduled-message/build.sh
X%%EXAMPLESDIR%%/jms/scheduled-message/build.bat
X%%EXAMPLESDIR%%/jms/scheduled-message/src/org/hornetq/jms/example/ScheduledMessageExample.java
X%%EXAMPLESDIR%%/jms/scheduled-message/readme.html
X%%EXAMPLESDIR%%/jms/embedded/build.sh
X%%EXAMPLESDIR%%/jms/embedded/readme.html
X%%EXAMPLESDIR%%/jms/embedded/build.bat
X%%EXAMPLESDIR%%/jms/embedded/src/org/hornetq/jms/example/EmbeddedExample.java
X%%EXAMPLESDIR%%/jms/embedded/build.xml
X%%EXAMPLESDIR%%/jms/message-counters/src/org/hornetq/jms/example/MessageCounterExample.java
X%%EXAMPLESDIR%%/jms/message-counters/build.sh
X%%EXAMPLESDIR%%/jms/message-counters/ant.properties
X%%EXAMPLESDIR%%/jms/message-counters/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/message-counters/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/message-counters/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/message-counters/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/message-counters/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/message-counters/build.bat
X%%EXAMPLESDIR%%/jms/message-counters/build.xml
X%%EXAMPLESDIR%%/jms/message-counters/readme.html
X%%EXAMPLESDIR%%/jms/delayed-redelivery/build.bat
X%%EXAMPLESDIR%%/jms/delayed-redelivery/build.sh
X%%EXAMPLESDIR%%/jms/delayed-redelivery/src/org/hornetq/jms/example/DelayedRedeliveryExample.java
X%%EXAMPLESDIR%%/jms/delayed-redelivery/build.xml
X%%EXAMPLESDIR%%/jms/delayed-redelivery/readme.html
X%%EXAMPLESDIR%%/jms/delayed-redelivery/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/delayed-redelivery/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/delayed-redelivery/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/delayed-redelivery/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/delayed-redelivery/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/consumer-rate-limit/build.bat
X%%EXAMPLESDIR%%/jms/consumer-rate-limit/readme.html
X%%EXAMPLESDIR%%/jms/consumer-rate-limit/src/org/hornetq/jms/example/ConsumerRateLimitExample.java
X%%EXAMPLESDIR%%/jms/consumer-rate-limit/build.sh
X%%EXAMPLESDIR%%/jms/consumer-rate-limit/build.xml
X%%EXAMPLESDIR%%/jms/consumer-rate-limit/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/consumer-rate-limit/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/consumer-rate-limit/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/consumer-rate-limit/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/consumer-rate-limit/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/divert/build.bat
X%%EXAMPLESDIR%%/jms/divert/build.sh
X%%EXAMPLESDIR%%/jms/divert/server1/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/divert/server1/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/divert/server1/client-jndi.properties
X%%EXAMPLESDIR%%/jms/divert/server1/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/divert/server1/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/divert/build.xml
X%%EXAMPLESDIR%%/jms/divert/src/org/hornetq/jms/example/AddForwardingTimeTransformer.java
X%%EXAMPLESDIR%%/jms/divert/src/org/hornetq/jms/example/DivertExample.java
X%%EXAMPLESDIR%%/jms/divert/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/divert/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/divert/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/divert/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/divert/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/divert/readme.html
X%%EXAMPLESDIR%%/jms/xa-send/src/org/hornetq/jms/example/XASendExample.java
X%%EXAMPLESDIR%%/jms/xa-send/readme.html
X%%EXAMPLESDIR%%/jms/xa-send/build.xml
X%%EXAMPLESDIR%%/jms/xa-send/build.sh
X%%EXAMPLESDIR%%/jms/xa-send/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/xa-send/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/xa-send/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/xa-send/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/xa-send/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/xa-send/build.bat
X%%EXAMPLESDIR%%/jms/xa-heuristic/build.sh
X%%EXAMPLESDIR%%/jms/xa-heuristic/src/org/hornetq/jms/example/XAHeuristicExample.java
X%%EXAMPLESDIR%%/jms/xa-heuristic/readme.html
X%%EXAMPLESDIR%%/jms/xa-heuristic/build.bat
X%%EXAMPLESDIR%%/jms/xa-heuristic/ant.properties
X%%EXAMPLESDIR%%/jms/xa-heuristic/build.xml
X%%EXAMPLESDIR%%/jms/xa-heuristic/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/xa-heuristic/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/xa-heuristic/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/xa-heuristic/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/xa-heuristic/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/no-consumer-buffering/build.xml
X%%EXAMPLESDIR%%/jms/no-consumer-buffering/build.sh
X%%EXAMPLESDIR%%/jms/no-consumer-buffering/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/no-consumer-buffering/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/no-consumer-buffering/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/no-consumer-buffering/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/no-consumer-buffering/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/no-consumer-buffering/build.bat
X%%EXAMPLESDIR%%/jms/no-consumer-buffering/src/org/hornetq/jms/example/NoConsumerBufferingExample.java
X%%EXAMPLESDIR%%/jms/no-consumer-buffering/readme.html
X%%EXAMPLESDIR%%/jms/spring-integration/build.xml
X%%EXAMPLESDIR%%/jms/spring-integration/src/org/hornetq/jms/example/ExampleListener.java
X%%EXAMPLESDIR%%/jms/spring-integration/src/org/hornetq/jms/example/MessageSender.java
X%%EXAMPLESDIR%%/jms/spring-integration/src/org/hornetq/jms/example/SpringExample.java
X%%EXAMPLESDIR%%/jms/spring-integration/build.sh
X%%EXAMPLESDIR%%/jms/spring-integration/readme.html
X%%EXAMPLESDIR%%/jms/spring-integration/build.bat
X%%EXAMPLESDIR%%/jms/spring-integration/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/spring-integration/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/spring-integration/server0/spring-jms-beans.xml
X%%EXAMPLESDIR%%/jms/spring-integration/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/paging/build.bat
X%%EXAMPLESDIR%%/jms/paging/src/org/hornetq/jms/example/PagingExample.java
X%%EXAMPLESDIR%%/jms/paging/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/paging/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/paging/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/paging/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/paging/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/paging/build.sh
X%%EXAMPLESDIR%%/jms/paging/build.xml
X%%EXAMPLESDIR%%/jms/paging/readme.html
X%%EXAMPLESDIR%%/jms/paging/ant.properties
X%%EXAMPLESDIR%%/jms/jms-bridge/build.sh
X%%EXAMPLESDIR%%/jms/jms-bridge/build.xml
X%%EXAMPLESDIR%%/jms/jms-bridge/server1/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/jms-bridge/server1/jndi.properties
X%%EXAMPLESDIR%%/jms/jms-bridge/server1/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/jms-bridge/server1/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/jms-bridge/server1/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/jms-bridge/src/org/hornetq/jms/example/JMSBridgeExample.java
X%%EXAMPLESDIR%%/jms/jms-bridge/build.bat
X%%EXAMPLESDIR%%/jms/jms-bridge/jms-bridge.png
X%%EXAMPLESDIR%%/jms/jms-bridge/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/jms-bridge/server0/jndi.properties
X%%EXAMPLESDIR%%/jms/jms-bridge/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/jms-bridge/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/jms-bridge/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/jms-bridge/readme.html
X%%EXAMPLESDIR%%/jms/dead-letter/readme.html
X%%EXAMPLESDIR%%/jms/dead-letter/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/dead-letter/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/dead-letter/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/dead-letter/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/dead-letter/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/dead-letter/build.sh
X%%EXAMPLESDIR%%/jms/dead-letter/build.bat
X%%EXAMPLESDIR%%/jms/dead-letter/src/org/hornetq/jms/example/DeadLetterExample.java
X%%EXAMPLESDIR%%/jms/dead-letter/build.xml
X%%EXAMPLESDIR%%/jms/static-selector-jms/build.sh
X%%EXAMPLESDIR%%/jms/static-selector-jms/src/org/hornetq/jms/example/StaticSelectorJMSExample.java
X%%EXAMPLESDIR%%/jms/static-selector-jms/build.xml
X%%EXAMPLESDIR%%/jms/static-selector-jms/server0/client-jndi.properties
X%%EXAMPLESDIR%%/jms/static-selector-jms/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/jms/static-selector-jms/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/jms/static-selector-jms/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/jms/static-selector-jms/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/jms/static-selector-jms/readme.html
X%%EXAMPLESDIR%%/jms/static-selector-jms/build.bat
X%%EXAMPLESDIR%%/soak/normal/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/soak/normal/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/soak/normal/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/soak/normal/src/org/hornetq/jms/soak/example/SoakSender.java
X%%EXAMPLESDIR%%/soak/normal/src/org/hornetq/jms/soak/example/SoakParams.java
X%%EXAMPLESDIR%%/soak/normal/src/org/hornetq/jms/soak/example/SoakBase.java
X%%EXAMPLESDIR%%/soak/normal/src/org/hornetq/jms/soak/example/SoakReceiver.java
X%%EXAMPLESDIR%%/soak/normal/README
X%%EXAMPLESDIR%%/soak/normal/build.xml
X%%EXAMPLESDIR%%/soak/normal/soak.properties
X%%EXAMPLESDIR%%/soak/tx-restarts/server0/hornetq-users.xml
X%%EXAMPLESDIR%%/soak/tx-restarts/server0/hornetq-configuration.xml
X%%EXAMPLESDIR%%/soak/tx-restarts/server0/jndi.properties
X%%EXAMPLESDIR%%/soak/tx-restarts/server0/hornetq-beans.xml
X%%EXAMPLESDIR%%/soak/tx-restarts/server0/hornetq-jms.xml
X%%EXAMPLESDIR%%/soak/tx-restarts/server0/client-jndi.properties
X%%EXAMPLESDIR%%/soak/tx-restarts/build.xml
X%%EXAMPLESDIR%%/soak/tx-restarts/src/org/hornetq/jms/example/Receiver.java
X%%EXAMPLESDIR%%/soak/tx-restarts/src/org/hornetq/jms/example/TXRestartSoak.java
X%%EXAMPLESDIR%%/soak/tx-restarts/src/org/hornetq/jms/example/Sender.java
X%%EXAMPLESDIR%%/soak/tx-restarts/src/org/hornetq/jms/example/ClientAbstract.java
X%%EXAMPLESDIR%%/soak/tx-restarts/build.sh
X%%EXAMPLESDIR%%/soak/tx-restarts/build.bat
X%%EXAMPLESDIR%%/soak/tx-restarts/README
X at dirrm %%EXAMPLESDIR%%/soak/tx-restarts/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/soak/tx-restarts/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/soak/tx-restarts/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/soak/tx-restarts/src/org
X at dirrm %%EXAMPLESDIR%%/soak/tx-restarts/src
X at dirrm %%EXAMPLESDIR%%/soak/tx-restarts/server0
X at dirrm %%EXAMPLESDIR%%/soak/tx-restarts
X at dirrm %%EXAMPLESDIR%%/soak/normal/src/org/hornetq/jms/soak/example
X at dirrm %%EXAMPLESDIR%%/soak/normal/src/org/hornetq/jms/soak
X at dirrm %%EXAMPLESDIR%%/soak/normal/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/soak/normal/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/soak/normal/src/org
X at dirrm %%EXAMPLESDIR%%/soak/normal/src
X at dirrm %%EXAMPLESDIR%%/soak/normal/server0
X at dirrm %%EXAMPLESDIR%%/soak/normal
X at dirrm %%EXAMPLESDIR%%/soak
X at dirrm %%EXAMPLESDIR%%/jms/xa-with-jta/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/xa-with-jta/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/xa-with-jta/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/xa-with-jta/src/org
X at dirrm %%EXAMPLESDIR%%/jms/xa-with-jta/src
X at dirrm %%EXAMPLESDIR%%/jms/xa-with-jta/server0
X at dirrm %%EXAMPLESDIR%%/jms/xa-with-jta
X at dirrm %%EXAMPLESDIR%%/jms/xa-send/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/xa-send/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/xa-send/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/xa-send/src/org
X at dirrm %%EXAMPLESDIR%%/jms/xa-send/src
X at dirrm %%EXAMPLESDIR%%/jms/xa-send/server0
X at dirrm %%EXAMPLESDIR%%/jms/xa-send
X at dirrm %%EXAMPLESDIR%%/jms/xa-receive/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/xa-receive/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/xa-receive/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/xa-receive/src/org
X at dirrm %%EXAMPLESDIR%%/jms/xa-receive/src
X at dirrm %%EXAMPLESDIR%%/jms/xa-receive/server0
X at dirrm %%EXAMPLESDIR%%/jms/xa-receive
X at dirrm %%EXAMPLESDIR%%/jms/xa-heuristic/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/xa-heuristic/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/xa-heuristic/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/xa-heuristic/src/org
X at dirrm %%EXAMPLESDIR%%/jms/xa-heuristic/src
X at dirrm %%EXAMPLESDIR%%/jms/xa-heuristic/server0
X at dirrm %%EXAMPLESDIR%%/jms/xa-heuristic
X at dirrm %%EXAMPLESDIR%%/jms/transactional/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/transactional/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/transactional/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/transactional/src/org
X at dirrm %%EXAMPLESDIR%%/jms/transactional/src
X at dirrm %%EXAMPLESDIR%%/jms/transactional/server0
X at dirrm %%EXAMPLESDIR%%/jms/transactional
X at dirrm %%EXAMPLESDIR%%/jms/transaction-failover/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/transaction-failover/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/transaction-failover/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/transaction-failover/src/org
X at dirrm %%EXAMPLESDIR%%/jms/transaction-failover/src
X at dirrm %%EXAMPLESDIR%%/jms/transaction-failover/server1
X at dirrm %%EXAMPLESDIR%%/jms/transaction-failover/server0
X at dirrm %%EXAMPLESDIR%%/jms/transaction-failover
X at dirrm %%EXAMPLESDIR%%/jms/topic/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/topic/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/topic/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/topic/src/org
X at dirrm %%EXAMPLESDIR%%/jms/topic/src
X at dirrm %%EXAMPLESDIR%%/jms/topic/server0
X at dirrm %%EXAMPLESDIR%%/jms/topic-selector-example2/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/topic-selector-example2/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/topic-selector-example2/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/topic-selector-example2/src/org
X at dirrm %%EXAMPLESDIR%%/jms/topic-selector-example2/src
X at dirrm %%EXAMPLESDIR%%/jms/topic-selector-example2/server0
X at dirrm %%EXAMPLESDIR%%/jms/topic-selector-example2
X at dirrm %%EXAMPLESDIR%%/jms/topic-selector-example1/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/topic-selector-example1/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/topic-selector-example1/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/topic-selector-example1/src/org
X at dirrm %%EXAMPLESDIR%%/jms/topic-selector-example1/src
X at dirrm %%EXAMPLESDIR%%/jms/topic-selector-example1/server0
X at dirrm %%EXAMPLESDIR%%/jms/topic-selector-example1
X at dirrm %%EXAMPLESDIR%%/jms/topic-hierarchies/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/topic-hierarchies/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/topic-hierarchies/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/topic-hierarchies/src/org
X at dirrm %%EXAMPLESDIR%%/jms/topic-hierarchies/src
X at dirrm %%EXAMPLESDIR%%/jms/topic-hierarchies/server0
X at dirrm %%EXAMPLESDIR%%/jms/topic-hierarchies
X at dirrm %%EXAMPLESDIR%%/jms/topic
X at dirrm %%EXAMPLESDIR%%/jms/temp-queue/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/temp-queue/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/temp-queue/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/temp-queue/src/org
X at dirrm %%EXAMPLESDIR%%/jms/temp-queue/src
X at dirrm %%EXAMPLESDIR%%/jms/temp-queue/server0
X at dirrm %%EXAMPLESDIR%%/jms/temp-queue
X at dirrm %%EXAMPLESDIR%%/jms/symmetric-cluster/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/symmetric-cluster/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/symmetric-cluster/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/symmetric-cluster/src/org
X at dirrm %%EXAMPLESDIR%%/jms/symmetric-cluster/src
X at dirrm %%EXAMPLESDIR%%/jms/symmetric-cluster/server5
X at dirrm %%EXAMPLESDIR%%/jms/symmetric-cluster/server4
X at dirrm %%EXAMPLESDIR%%/jms/symmetric-cluster/server3
X at dirrm %%EXAMPLESDIR%%/jms/symmetric-cluster/server2
X at dirrm %%EXAMPLESDIR%%/jms/symmetric-cluster/server1
X at dirrm %%EXAMPLESDIR%%/jms/symmetric-cluster/server0
X at dirrm %%EXAMPLESDIR%%/jms/symmetric-cluster
X at dirrm %%EXAMPLESDIR%%/jms/stop-server-failover/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/stop-server-failover/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/stop-server-failover/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/stop-server-failover/src/org
X at dirrm %%EXAMPLESDIR%%/jms/stop-server-failover/src
X at dirrm %%EXAMPLESDIR%%/jms/stop-server-failover/server1
X at dirrm %%EXAMPLESDIR%%/jms/stop-server-failover/server0
X at dirrm %%EXAMPLESDIR%%/jms/stop-server-failover
X at dirrm %%EXAMPLESDIR%%/jms/stomp/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/stomp/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/stomp/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/stomp/src/org
X at dirrm %%EXAMPLESDIR%%/jms/stomp/src
X at dirrm %%EXAMPLESDIR%%/jms/stomp/server0
X at dirrm %%EXAMPLESDIR%%/jms/stomp-websockets/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/stomp-websockets/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/stomp-websockets/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/stomp-websockets/src/org
X at dirrm %%EXAMPLESDIR%%/jms/stomp-websockets/src
X at dirrm %%EXAMPLESDIR%%/jms/stomp-websockets/server0
X at dirrm %%EXAMPLESDIR%%/jms/stomp-websockets/chat
X at dirrm %%EXAMPLESDIR%%/jms/stomp-websockets
X at dirrm %%EXAMPLESDIR%%/jms/stomp
X at dirrm %%EXAMPLESDIR%%/jms/static-selector/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/static-selector/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/static-selector/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/static-selector/src/org
X at dirrm %%EXAMPLESDIR%%/jms/static-selector/src
X at dirrm %%EXAMPLESDIR%%/jms/static-selector/server0
X at dirrm %%EXAMPLESDIR%%/jms/static-selector-jms/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/static-selector-jms/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/static-selector-jms/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/static-selector-jms/src/org
X at dirrm %%EXAMPLESDIR%%/jms/static-selector-jms/src
X at dirrm %%EXAMPLESDIR%%/jms/static-selector-jms/server0
X at dirrm %%EXAMPLESDIR%%/jms/static-selector-jms
X at dirrm %%EXAMPLESDIR%%/jms/static-selector
X at dirrm %%EXAMPLESDIR%%/jms/ssl-enabled/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/ssl-enabled/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/ssl-enabled/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/ssl-enabled/src/org
X at dirrm %%EXAMPLESDIR%%/jms/ssl-enabled/src
X at dirrm %%EXAMPLESDIR%%/jms/ssl-enabled/server0
X at dirrm %%EXAMPLESDIR%%/jms/ssl-enabled
X at dirrm %%EXAMPLESDIR%%/jms/spring-integration/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/spring-integration/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/spring-integration/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/spring-integration/src/org
X at dirrm %%EXAMPLESDIR%%/jms/spring-integration/src
X at dirrm %%EXAMPLESDIR%%/jms/spring-integration/server0
X at dirrm %%EXAMPLESDIR%%/jms/spring-integration
X at dirrm %%EXAMPLESDIR%%/jms/send-acknowledgements/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/send-acknowledgements/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/send-acknowledgements/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/send-acknowledgements/src/org
X at dirrm %%EXAMPLESDIR%%/jms/send-acknowledgements/src
X at dirrm %%EXAMPLESDIR%%/jms/send-acknowledgements/server0
X at dirrm %%EXAMPLESDIR%%/jms/send-acknowledgements
X at dirrm %%EXAMPLESDIR%%/jms/security/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/security/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/security/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/security/src/org
X at dirrm %%EXAMPLESDIR%%/jms/security/src
X at dirrm %%EXAMPLESDIR%%/jms/security/server0
X at dirrm %%EXAMPLESDIR%%/jms/security
X at dirrm %%EXAMPLESDIR%%/jms/scheduled-message/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/scheduled-message/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/scheduled-message/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/scheduled-message/src/org
X at dirrm %%EXAMPLESDIR%%/jms/scheduled-message/src
X at dirrm %%EXAMPLESDIR%%/jms/scheduled-message/server0
X at dirrm %%EXAMPLESDIR%%/jms/scheduled-message
X at dirrm %%EXAMPLESDIR%%/jms/request-reply/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/request-reply/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/request-reply/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/request-reply/src/org
X at dirrm %%EXAMPLESDIR%%/jms/request-reply/src
X at dirrm %%EXAMPLESDIR%%/jms/request-reply/server0
X at dirrm %%EXAMPLESDIR%%/jms/request-reply
X at dirrm %%EXAMPLESDIR%%/jms/reattach-node/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/reattach-node/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/reattach-node/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/reattach-node/src/org
X at dirrm %%EXAMPLESDIR%%/jms/reattach-node/src
X at dirrm %%EXAMPLESDIR%%/jms/reattach-node/server0
X at dirrm %%EXAMPLESDIR%%/jms/reattach-node
X at dirrm %%EXAMPLESDIR%%/jms/queue/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/queue/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/queue/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/queue/src/org
X at dirrm %%EXAMPLESDIR%%/jms/queue/src
X at dirrm %%EXAMPLESDIR%%/jms/queue/server0
X at dirrm %%EXAMPLESDIR%%/jms/queue-selector/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/queue-selector/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/queue-selector/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/queue-selector/src/org
X at dirrm %%EXAMPLESDIR%%/jms/queue-selector/src
X at dirrm %%EXAMPLESDIR%%/jms/queue-selector/server0
X at dirrm %%EXAMPLESDIR%%/jms/queue-selector
X at dirrm %%EXAMPLESDIR%%/jms/queue-requestor/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/queue-requestor/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/queue-requestor/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/queue-requestor/src/org
X at dirrm %%EXAMPLESDIR%%/jms/queue-requestor/src
X at dirrm %%EXAMPLESDIR%%/jms/queue-requestor/server0
X at dirrm %%EXAMPLESDIR%%/jms/queue-requestor
X at dirrm %%EXAMPLESDIR%%/jms/queue-message-redistribution/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/queue-message-redistribution/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/queue-message-redistribution/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/queue-message-redistribution/src/org
X at dirrm %%EXAMPLESDIR%%/jms/queue-message-redistribution/src
X at dirrm %%EXAMPLESDIR%%/jms/queue-message-redistribution/server1
X at dirrm %%EXAMPLESDIR%%/jms/queue-message-redistribution/server0
X at dirrm %%EXAMPLESDIR%%/jms/queue-message-redistribution
X at dirrm %%EXAMPLESDIR%%/jms/queue
X at dirrm %%EXAMPLESDIR%%/jms/producer-rate-limit/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/producer-rate-limit/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/producer-rate-limit/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/producer-rate-limit/src/org
X at dirrm %%EXAMPLESDIR%%/jms/producer-rate-limit/src
X at dirrm %%EXAMPLESDIR%%/jms/producer-rate-limit/server0
X at dirrm %%EXAMPLESDIR%%/jms/producer-rate-limit
X at dirrm %%EXAMPLESDIR%%/jms/pre-acknowledge/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/pre-acknowledge/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/pre-acknowledge/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/pre-acknowledge/src/org
X at dirrm %%EXAMPLESDIR%%/jms/pre-acknowledge/src
X at dirrm %%EXAMPLESDIR%%/jms/pre-acknowledge/server0
X at dirrm %%EXAMPLESDIR%%/jms/pre-acknowledge
X at dirrm %%EXAMPLESDIR%%/jms/perf/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/perf/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/perf/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/perf/src/org
X at dirrm %%EXAMPLESDIR%%/jms/perf/src
X at dirrm %%EXAMPLESDIR%%/jms/perf/server0
X at dirrm %%EXAMPLESDIR%%/jms/perf
X at dirrm %%EXAMPLESDIR%%/jms/paging/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/paging/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/paging/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/paging/src/org
X at dirrm %%EXAMPLESDIR%%/jms/paging/src
X at dirrm %%EXAMPLESDIR%%/jms/paging/server0
X at dirrm %%EXAMPLESDIR%%/jms/paging
X at dirrm %%EXAMPLESDIR%%/jms/non-transaction-failover/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/non-transaction-failover/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/non-transaction-failover/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/non-transaction-failover/src/org
X at dirrm %%EXAMPLESDIR%%/jms/non-transaction-failover/src
X at dirrm %%EXAMPLESDIR%%/jms/non-transaction-failover/server1
X at dirrm %%EXAMPLESDIR%%/jms/non-transaction-failover/server0
X at dirrm %%EXAMPLESDIR%%/jms/non-transaction-failover
X at dirrm %%EXAMPLESDIR%%/jms/no-consumer-buffering/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/no-consumer-buffering/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/no-consumer-buffering/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/no-consumer-buffering/src/org
X at dirrm %%EXAMPLESDIR%%/jms/no-consumer-buffering/src
X at dirrm %%EXAMPLESDIR%%/jms/no-consumer-buffering/server0
X at dirrm %%EXAMPLESDIR%%/jms/no-consumer-buffering
X at dirrm %%EXAMPLESDIR%%/jms/multiple-failover/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/multiple-failover/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/multiple-failover/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/multiple-failover/src/org
X at dirrm %%EXAMPLESDIR%%/jms/multiple-failover/src
X at dirrm %%EXAMPLESDIR%%/jms/multiple-failover/server2
X at dirrm %%EXAMPLESDIR%%/jms/multiple-failover/server1
X at dirrm %%EXAMPLESDIR%%/jms/multiple-failover/server0
X at dirrm %%EXAMPLESDIR%%/jms/multiple-failover-failback/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/multiple-failover-failback/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/multiple-failover-failback/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/multiple-failover-failback/src/org
X at dirrm %%EXAMPLESDIR%%/jms/multiple-failover-failback/src
X at dirrm %%EXAMPLESDIR%%/jms/multiple-failover-failback/server2
X at dirrm %%EXAMPLESDIR%%/jms/multiple-failover-failback/server1
X at dirrm %%EXAMPLESDIR%%/jms/multiple-failover-failback/server0
X at dirrm %%EXAMPLESDIR%%/jms/multiple-failover-failback
X at dirrm %%EXAMPLESDIR%%/jms/multiple-failover
X at dirrm %%EXAMPLESDIR%%/jms/message-priority/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/message-priority/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/message-priority/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/message-priority/src/org
X at dirrm %%EXAMPLESDIR%%/jms/message-priority/src
X at dirrm %%EXAMPLESDIR%%/jms/message-priority/server0
X at dirrm %%EXAMPLESDIR%%/jms/message-priority
X at dirrm %%EXAMPLESDIR%%/jms/message-group2/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/message-group2/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/message-group2/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/message-group2/src/org
X at dirrm %%EXAMPLESDIR%%/jms/message-group2/src
X at dirrm %%EXAMPLESDIR%%/jms/message-group2/server0
X at dirrm %%EXAMPLESDIR%%/jms/message-group2
X at dirrm %%EXAMPLESDIR%%/jms/message-group/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/message-group/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/message-group/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/message-group/src/org
X at dirrm %%EXAMPLESDIR%%/jms/message-group/src
X at dirrm %%EXAMPLESDIR%%/jms/message-group/server0
X at dirrm %%EXAMPLESDIR%%/jms/message-group
X at dirrm %%EXAMPLESDIR%%/jms/message-counters/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/message-counters/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/message-counters/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/message-counters/src/org
X at dirrm %%EXAMPLESDIR%%/jms/message-counters/src
X at dirrm %%EXAMPLESDIR%%/jms/message-counters/server0
X at dirrm %%EXAMPLESDIR%%/jms/message-counters
X at dirrm %%EXAMPLESDIR%%/jms/management/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/management/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/management/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/management/src/org
X at dirrm %%EXAMPLESDIR%%/jms/management/src
X at dirrm %%EXAMPLESDIR%%/jms/management/server0
X at dirrm %%EXAMPLESDIR%%/jms/management-notifications/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/management-notifications/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/management-notifications/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/management-notifications/src/org
X at dirrm %%EXAMPLESDIR%%/jms/management-notifications/src
X at dirrm %%EXAMPLESDIR%%/jms/management-notifications/server0
X at dirrm %%EXAMPLESDIR%%/jms/management-notifications
X at dirrm %%EXAMPLESDIR%%/jms/management
X at dirrm %%EXAMPLESDIR%%/jms/last-value-queue/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/last-value-queue/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/last-value-queue/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/last-value-queue/src/org
X at dirrm %%EXAMPLESDIR%%/jms/last-value-queue/src
X at dirrm %%EXAMPLESDIR%%/jms/last-value-queue/server0
X at dirrm %%EXAMPLESDIR%%/jms/last-value-queue
X at dirrm %%EXAMPLESDIR%%/jms/large-message/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/large-message/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/large-message/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/large-message/src/org
X at dirrm %%EXAMPLESDIR%%/jms/large-message/src
X at dirrm %%EXAMPLESDIR%%/jms/large-message/server0
X at dirrm %%EXAMPLESDIR%%/jms/large-message
X at dirrm %%EXAMPLESDIR%%/jms/jmx/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/jmx/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/jmx/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/jmx/src/org
X at dirrm %%EXAMPLESDIR%%/jms/jmx/src
X at dirrm %%EXAMPLESDIR%%/jms/jmx/server0
X at dirrm %%EXAMPLESDIR%%/jms/jmx
X at dirrm %%EXAMPLESDIR%%/jms/jms-bridge/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/jms-bridge/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/jms-bridge/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/jms-bridge/src/org
X at dirrm %%EXAMPLESDIR%%/jms/jms-bridge/src
X at dirrm %%EXAMPLESDIR%%/jms/jms-bridge/server1
X at dirrm %%EXAMPLESDIR%%/jms/jms-bridge/server0
X at dirrm %%EXAMPLESDIR%%/jms/jms-bridge
X at dirrm %%EXAMPLESDIR%%/jms/jaas/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/jaas/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/jaas/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/jaas/src/org
X at dirrm %%EXAMPLESDIR%%/jms/jaas/src
X at dirrm %%EXAMPLESDIR%%/jms/jaas/server0
X at dirrm %%EXAMPLESDIR%%/jms/jaas
X at dirrm %%EXAMPLESDIR%%/jms/interceptor/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/interceptor/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/interceptor/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/interceptor/src/org
X at dirrm %%EXAMPLESDIR%%/jms/interceptor/src
X at dirrm %%EXAMPLESDIR%%/jms/interceptor/server0
X at dirrm %%EXAMPLESDIR%%/jms/interceptor
X at dirrm %%EXAMPLESDIR%%/jms/instantiate-connection-factory/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/instantiate-connection-factory/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/instantiate-connection-factory/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/instantiate-connection-factory/src/org
X at dirrm %%EXAMPLESDIR%%/jms/instantiate-connection-factory/src
X at dirrm %%EXAMPLESDIR%%/jms/instantiate-connection-factory/server0
X at dirrm %%EXAMPLESDIR%%/jms/instantiate-connection-factory
X at dirrm %%EXAMPLESDIR%%/jms/http-transport/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/http-transport/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/http-transport/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/http-transport/src/org
X at dirrm %%EXAMPLESDIR%%/jms/http-transport/src
X at dirrm %%EXAMPLESDIR%%/jms/http-transport/server0
X at dirrm %%EXAMPLESDIR%%/jms/http-transport
X at dirrm %%EXAMPLESDIR%%/jms/expiry/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/expiry/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/expiry/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/expiry/src/org
X at dirrm %%EXAMPLESDIR%%/jms/expiry/src
X at dirrm %%EXAMPLESDIR%%/jms/expiry/server0
X at dirrm %%EXAMPLESDIR%%/jms/expiry
X at dirrm %%EXAMPLESDIR%%/jms/embedded/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/embedded/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/embedded/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/embedded/src/org
X at dirrm %%EXAMPLESDIR%%/jms/embedded/src
X at dirrm %%EXAMPLESDIR%%/jms/embedded-simple/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/embedded-simple/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/embedded-simple/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/embedded-simple/src/org
X at dirrm %%EXAMPLESDIR%%/jms/embedded-simple/src
X at dirrm %%EXAMPLESDIR%%/jms/embedded-simple/server0
X at dirrm %%EXAMPLESDIR%%/jms/embedded-simple
X at dirrm %%EXAMPLESDIR%%/jms/embedded
X at dirrm %%EXAMPLESDIR%%/jms/durable-subscription/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/durable-subscription/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/durable-subscription/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/durable-subscription/src/org
X at dirrm %%EXAMPLESDIR%%/jms/durable-subscription/src
X at dirrm %%EXAMPLESDIR%%/jms/durable-subscription/server0
X at dirrm %%EXAMPLESDIR%%/jms/durable-subscription
X at dirrm %%EXAMPLESDIR%%/jms/divert/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/divert/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/divert/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/divert/src/org
X at dirrm %%EXAMPLESDIR%%/jms/divert/src
X at dirrm %%EXAMPLESDIR%%/jms/divert/server1
X at dirrm %%EXAMPLESDIR%%/jms/divert/server0
X at dirrm %%EXAMPLESDIR%%/jms/divert
X at dirrm %%EXAMPLESDIR%%/jms/delayed-redelivery/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/delayed-redelivery/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/delayed-redelivery/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/delayed-redelivery/src/org
X at dirrm %%EXAMPLESDIR%%/jms/delayed-redelivery/src
X at dirrm %%EXAMPLESDIR%%/jms/delayed-redelivery/server0
X at dirrm %%EXAMPLESDIR%%/jms/delayed-redelivery
X at dirrm %%EXAMPLESDIR%%/jms/dead-letter/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/dead-letter/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/dead-letter/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/dead-letter/src/org
X at dirrm %%EXAMPLESDIR%%/jms/dead-letter/src
X at dirrm %%EXAMPLESDIR%%/jms/dead-letter/server0
X at dirrm %%EXAMPLESDIR%%/jms/dead-letter
X at dirrm %%EXAMPLESDIR%%/jms/consumer-rate-limit/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/consumer-rate-limit/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/consumer-rate-limit/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/consumer-rate-limit/src/org
X at dirrm %%EXAMPLESDIR%%/jms/consumer-rate-limit/src
X at dirrm %%EXAMPLESDIR%%/jms/consumer-rate-limit/server0
X at dirrm %%EXAMPLESDIR%%/jms/consumer-rate-limit
X at dirrm %%EXAMPLESDIR%%/jms/clustered-topic/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/clustered-topic/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/clustered-topic/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/clustered-topic/src/org
X at dirrm %%EXAMPLESDIR%%/jms/clustered-topic/src
X at dirrm %%EXAMPLESDIR%%/jms/clustered-topic/server1
X at dirrm %%EXAMPLESDIR%%/jms/clustered-topic/server0
X at dirrm %%EXAMPLESDIR%%/jms/clustered-topic
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-oneway/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-oneway/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-oneway/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-oneway/src/org
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-oneway/src
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-oneway/server2
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-oneway/server1
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-oneway/server0
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-oneway
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-discovery/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-discovery/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-discovery/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-discovery/src/org
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-discovery/src
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-discovery/server3
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-discovery/server2
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-discovery/server1
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-discovery/server0
X at dirrm %%EXAMPLESDIR%%/jms/clustered-static-discovery
X at dirrm %%EXAMPLESDIR%%/jms/clustered-standalone/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/clustered-standalone/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/clustered-standalone/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/clustered-standalone/src/org
X at dirrm %%EXAMPLESDIR%%/jms/clustered-standalone/src
X at dirrm %%EXAMPLESDIR%%/jms/clustered-standalone/server2
X at dirrm %%EXAMPLESDIR%%/jms/clustered-standalone/server1
X at dirrm %%EXAMPLESDIR%%/jms/clustered-standalone/server0
X at dirrm %%EXAMPLESDIR%%/jms/clustered-standalone
X at dirrm %%EXAMPLESDIR%%/jms/clustered-queue/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/clustered-queue/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/clustered-queue/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/clustered-queue/src/org
X at dirrm %%EXAMPLESDIR%%/jms/clustered-queue/src
X at dirrm %%EXAMPLESDIR%%/jms/clustered-queue/server1
X at dirrm %%EXAMPLESDIR%%/jms/clustered-queue/server0
X at dirrm %%EXAMPLESDIR%%/jms/clustered-queue
X at dirrm %%EXAMPLESDIR%%/jms/clustered-grouping/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/clustered-grouping/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/clustered-grouping/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/clustered-grouping/src/org
X at dirrm %%EXAMPLESDIR%%/jms/clustered-grouping/src
X at dirrm %%EXAMPLESDIR%%/jms/clustered-grouping/server2
X at dirrm %%EXAMPLESDIR%%/jms/clustered-grouping/server1
X at dirrm %%EXAMPLESDIR%%/jms/clustered-grouping/server0
X at dirrm %%EXAMPLESDIR%%/jms/clustered-grouping
X at dirrm %%EXAMPLESDIR%%/jms/clustered-durable-subscription/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/clustered-durable-subscription/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/clustered-durable-subscription/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/clustered-durable-subscription/src/org
X at dirrm %%EXAMPLESDIR%%/jms/clustered-durable-subscription/src
X at dirrm %%EXAMPLESDIR%%/jms/clustered-durable-subscription/server1
X at dirrm %%EXAMPLESDIR%%/jms/clustered-durable-subscription/server0
X at dirrm %%EXAMPLESDIR%%/jms/clustered-durable-subscription
X at dirrm %%EXAMPLESDIR%%/jms/client-side-load-balancing/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/client-side-load-balancing/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/client-side-load-balancing/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/client-side-load-balancing/src/org
X at dirrm %%EXAMPLESDIR%%/jms/client-side-load-balancing/src
X at dirrm %%EXAMPLESDIR%%/jms/client-side-load-balancing/server2
X at dirrm %%EXAMPLESDIR%%/jms/client-side-load-balancing/server1
X at dirrm %%EXAMPLESDIR%%/jms/client-side-load-balancing/server0
X at dirrm %%EXAMPLESDIR%%/jms/client-side-load-balancing
X at dirrm %%EXAMPLESDIR%%/jms/client-kickoff/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/client-kickoff/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/client-kickoff/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/client-kickoff/src/org
X at dirrm %%EXAMPLESDIR%%/jms/client-kickoff/src
X at dirrm %%EXAMPLESDIR%%/jms/client-kickoff/server0
X at dirrm %%EXAMPLESDIR%%/jms/client-kickoff
X at dirrm %%EXAMPLESDIR%%/jms/browser/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/browser/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/browser/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/browser/src/org
X at dirrm %%EXAMPLESDIR%%/jms/browser/src
X at dirrm %%EXAMPLESDIR%%/jms/browser/server0
X at dirrm %%EXAMPLESDIR%%/jms/browser
X at dirrm %%EXAMPLESDIR%%/jms/bridge/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/bridge/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/bridge/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/bridge/src/org
X at dirrm %%EXAMPLESDIR%%/jms/bridge/src
X at dirrm %%EXAMPLESDIR%%/jms/bridge/server1
X at dirrm %%EXAMPLESDIR%%/jms/bridge/server0
X at dirrm %%EXAMPLESDIR%%/jms/bridge
X at dirrm %%EXAMPLESDIR%%/jms/application-layer-failover/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/application-layer-failover/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/application-layer-failover/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/application-layer-failover/src/org
X at dirrm %%EXAMPLESDIR%%/jms/application-layer-failover/src
X at dirrm %%EXAMPLESDIR%%/jms/application-layer-failover/server1
X at dirrm %%EXAMPLESDIR%%/jms/application-layer-failover/server0
X at dirrm %%EXAMPLESDIR%%/jms/application-layer-failover
X at dirrm %%EXAMPLESDIR%%/jms/applet/src/org/hornetq/jms/example
X at dirrm %%EXAMPLESDIR%%/jms/applet/src/org/hornetq/jms
X at dirrm %%EXAMPLESDIR%%/jms/applet/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/jms/applet/src/org
X at dirrm %%EXAMPLESDIR%%/jms/applet/src
X at dirrm %%EXAMPLESDIR%%/jms/applet/server0
X at dirrm %%EXAMPLESDIR%%/jms/applet
X at dirrm %%EXAMPLESDIR%%/jms
X at dirrm %%EXAMPLESDIR%%/javaee/xarecovery/src/org/hornetq/javaee/example/server
X at dirrm %%EXAMPLESDIR%%/javaee/xarecovery/src/org/hornetq/javaee/example
X at dirrm %%EXAMPLESDIR%%/javaee/xarecovery/src/org/hornetq/javaee
X at dirrm %%EXAMPLESDIR%%/javaee/xarecovery/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/javaee/xarecovery/src/org
X at dirrm %%EXAMPLESDIR%%/javaee/xarecovery/src
X at dirrm %%EXAMPLESDIR%%/javaee/xarecovery/server
X at dirrm %%EXAMPLESDIR%%/javaee/xarecovery/config
X at dirrm %%EXAMPLESDIR%%/javaee/xarecovery
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-transport/src/org/hornetq/javaee/example
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-transport/src/org/hornetq/javaee
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-transport/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-transport/src/org
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-transport/src
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-transport/server
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-transport/config/WEB-INF
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-transport/config/META-INF
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-transport/config
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-transport
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-ssl/src/org/hornetq/javaee/example
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-ssl/src/org/hornetq/javaee
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-ssl/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-ssl/src/org
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-ssl/src
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-ssl/server
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-ssl/config/WEB-INF
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-ssl/config/META-INF
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-ssl/config
X at dirrm %%EXAMPLESDIR%%/javaee/servlet-ssl
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-tx-send/src/org/hornetq/javaee/example/server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-tx-send/src/org/hornetq/javaee/example
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-tx-send/src/org/hornetq/javaee
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-tx-send/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-tx-send/src/org
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-tx-send/src
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-tx-send/server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-tx-send/config/META-INF
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-tx-send/config
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-tx-send
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover/src/org/hornetq/javaee/example/server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover/src/org/hornetq/javaee/example
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover/src/org/hornetq/javaee
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover/src/org
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover/src
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover/server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover/live-server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover/config/META-INF
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover/config
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover/backup-server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/src/org/hornetq/javaee/example/server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/src/org/hornetq/javaee/example
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/src/org/hornetq/javaee
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/src/org
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/src
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/live-server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/config/META-INF
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/config
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover-static/backup-server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover-static
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-remote-failover
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-message-selector/src/org/hornetq/javaee/example/server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-message-selector/src/org/hornetq/javaee/example
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-message-selector/src/org/hornetq/javaee
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-message-selector/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-message-selector/src/org
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-message-selector/src
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-message-selector/server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-message-selector/config/META-INF
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-message-selector/config
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-message-selector
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/src/org/hornetq/javaee/example/server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/src/org/hornetq/javaee/example
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/src/org/hornetq/javaee
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/src/org
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/src
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/config/META-INF
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required/config
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-required
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/src/org/hornetq/javaee/example/server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/src/org/hornetq/javaee/example
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/src/org/hornetq/javaee
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/src/org
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/src
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/config/META-INF
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported/config
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-not-supported
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/src/org/hornetq/javaee/example/server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/src/org/hornetq/javaee/example
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/src/org/hornetq/javaee
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/src/org
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/src
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/config/META-INF
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local/config
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-tx-local
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/src/org/hornetq/javaee/example/server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/src/org/hornetq/javaee/example
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/src/org/hornetq/javaee
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/src/org
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/src
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/config/META-INF
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly/config
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-cmt-setrollbackonly
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-bmt/src/org/hornetq/javaee/example/server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-bmt/src/org/hornetq/javaee/example
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-bmt/src/org/hornetq/javaee
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-bmt/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-bmt/src/org
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-bmt/src
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-bmt/server
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-bmt/config/META-INF
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-bmt/config
X at dirrm %%EXAMPLESDIR%%/javaee/mdb-bmt
X at dirrm %%EXAMPLESDIR%%/javaee/jms-bridge/src/org/hornetq/javaee/example
X at dirrm %%EXAMPLESDIR%%/javaee/jms-bridge/src/org/hornetq/javaee
X at dirrm %%EXAMPLESDIR%%/javaee/jms-bridge/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/javaee/jms-bridge/src/org
X at dirrm %%EXAMPLESDIR%%/javaee/jms-bridge/src
X at dirrm %%EXAMPLESDIR%%/javaee/jms-bridge/server
X at dirrm %%EXAMPLESDIR%%/javaee/jms-bridge/config/META-INF
X at dirrm %%EXAMPLESDIR%%/javaee/jms-bridge/config
X at dirrm %%EXAMPLESDIR%%/javaee/jms-bridge
X at dirrm %%EXAMPLESDIR%%/javaee/jca-remote/src/org/hornetq/javaee/example/server
X at dirrm %%EXAMPLESDIR%%/javaee/jca-remote/src/org/hornetq/javaee/example
X at dirrm %%EXAMPLESDIR%%/javaee/jca-remote/src/org/hornetq/javaee
X at dirrm %%EXAMPLESDIR%%/javaee/jca-remote/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/javaee/jca-remote/src/org
X at dirrm %%EXAMPLESDIR%%/javaee/jca-remote/src
X at dirrm %%EXAMPLESDIR%%/javaee/jca-remote/server0
X at dirrm %%EXAMPLESDIR%%/javaee/jca-remote/server
X at dirrm %%EXAMPLESDIR%%/javaee/jca-remote/config/META-INF
X at dirrm %%EXAMPLESDIR%%/javaee/jca-remote/config
X at dirrm %%EXAMPLESDIR%%/javaee/jca-remote
X at dirrm %%EXAMPLESDIR%%/javaee/jca-config/src/org/hornetq/javaee/example/server2
X at dirrm %%EXAMPLESDIR%%/javaee/jca-config/src/org/hornetq/javaee/example/server
X at dirrm %%EXAMPLESDIR%%/javaee/jca-config/src/org/hornetq/javaee/example
X at dirrm %%EXAMPLESDIR%%/javaee/jca-config/src/org/hornetq/javaee
X at dirrm %%EXAMPLESDIR%%/javaee/jca-config/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/javaee/jca-config/src/org
X at dirrm %%EXAMPLESDIR%%/javaee/jca-config/src
X at dirrm %%EXAMPLESDIR%%/javaee/jca-config/server2
X at dirrm %%EXAMPLESDIR%%/javaee/jca-config/server
X at dirrm %%EXAMPLESDIR%%/javaee/jca-config/config/META-INF
X at dirrm %%EXAMPLESDIR%%/javaee/jca-config/config
X at dirrm %%EXAMPLESDIR%%/javaee/jca-config
X at dirrm %%EXAMPLESDIR%%/javaee/hajndi/src/org/hornetq/javaee/example
X at dirrm %%EXAMPLESDIR%%/javaee/hajndi/src/org/hornetq/javaee
X at dirrm %%EXAMPLESDIR%%/javaee/hajndi/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/javaee/hajndi/src/org
X at dirrm %%EXAMPLESDIR%%/javaee/hajndi/src
X at dirrm %%EXAMPLESDIR%%/javaee/hajndi/config/META-INF
X at dirrm %%EXAMPLESDIR%%/javaee/hajndi/config
X at dirrm %%EXAMPLESDIR%%/javaee/hajndi
X at dirrm %%EXAMPLESDIR%%/javaee/ejb-jms-transaction/src/org/hornetq/javaee/example/server
X at dirrm %%EXAMPLESDIR%%/javaee/ejb-jms-transaction/src/org/hornetq/javaee/example
X at dirrm %%EXAMPLESDIR%%/javaee/ejb-jms-transaction/src/org/hornetq/javaee
X at dirrm %%EXAMPLESDIR%%/javaee/ejb-jms-transaction/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/javaee/ejb-jms-transaction/src/org
X at dirrm %%EXAMPLESDIR%%/javaee/ejb-jms-transaction/src
X at dirrm %%EXAMPLESDIR%%/javaee/ejb-jms-transaction/server
X at dirrm %%EXAMPLESDIR%%/javaee/ejb-jms-transaction/config/META-INF
X at dirrm %%EXAMPLESDIR%%/javaee/ejb-jms-transaction/config
X at dirrm %%EXAMPLESDIR%%/javaee/ejb-jms-transaction
X at dirrm %%EXAMPLESDIR%%/javaee/common/config
X at dirrm %%EXAMPLESDIR%%/javaee/common
X at dirrm %%EXAMPLESDIR%%/javaee
X at dirrm %%EXAMPLESDIR%%/core/twitter-connector/src/org/hornetq/core/example
X at dirrm %%EXAMPLESDIR%%/core/twitter-connector/src/org/hornetq/core
X at dirrm %%EXAMPLESDIR%%/core/twitter-connector/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/core/twitter-connector/src/org
X at dirrm %%EXAMPLESDIR%%/core/twitter-connector/src
X at dirrm %%EXAMPLESDIR%%/core/twitter-connector/server0
X at dirrm %%EXAMPLESDIR%%/core/twitter-connector
X at dirrm %%EXAMPLESDIR%%/core/perf/src/org/hornetq/core/example
X at dirrm %%EXAMPLESDIR%%/core/perf/src/org/hornetq/core
X at dirrm %%EXAMPLESDIR%%/core/perf/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/core/perf/src/org
X at dirrm %%EXAMPLESDIR%%/core/perf/src
X at dirrm %%EXAMPLESDIR%%/core/perf/server0
X at dirrm %%EXAMPLESDIR%%/core/perf
X at dirrm %%EXAMPLESDIR%%/core/microcontainer/src/org/hornetq/core/example
X at dirrm %%EXAMPLESDIR%%/core/microcontainer/src/org/hornetq/core
X at dirrm %%EXAMPLESDIR%%/core/microcontainer/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/core/microcontainer/src/org
X at dirrm %%EXAMPLESDIR%%/core/microcontainer/src
X at dirrm %%EXAMPLESDIR%%/core/microcontainer/server0
X at dirrm %%EXAMPLESDIR%%/core/microcontainer
X at dirrm %%EXAMPLESDIR%%/core/embedded/src/org/hornetq/core/example
X at dirrm %%EXAMPLESDIR%%/core/embedded/src/org/hornetq/core
X at dirrm %%EXAMPLESDIR%%/core/embedded/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/core/embedded/src/org
X at dirrm %%EXAMPLESDIR%%/core/embedded/src
X at dirrm %%EXAMPLESDIR%%/core/embedded-remote/src/org/hornetq/core/example
X at dirrm %%EXAMPLESDIR%%/core/embedded-remote/src/org/hornetq/core
X at dirrm %%EXAMPLESDIR%%/core/embedded-remote/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/core/embedded-remote/src/org
X at dirrm %%EXAMPLESDIR%%/core/embedded-remote/src
X at dirrm %%EXAMPLESDIR%%/core/embedded-remote
X at dirrm %%EXAMPLESDIR%%/core/embedded
X at dirrm %%EXAMPLESDIR%%/core
X at dirrm %%EXAMPLESDIR%%/common/src/org/hornetq/common/example
X at dirrm %%EXAMPLESDIR%%/common/src/org/hornetq/common
X at dirrm %%EXAMPLESDIR%%/common/src/org/hornetq
X at dirrm %%EXAMPLESDIR%%/common/src/org
X at dirrm %%EXAMPLESDIR%%/common/src
X at dirrm %%EXAMPLESDIR%%/common/images
X at dirrm %%EXAMPLESDIR%%/common/config
X at dirrm %%EXAMPLESDIR%%/common
X at dirrm %%EXAMPLESDIR%%
78ce390f5c22e2fe0bc1743965ad6fd9
echo x - hornetq/Makefile
sed 's/^X//' >hornetq/Makefile << 'fae8e0d62bb5d232d08251dd3344893a'
X# New ports collection makefile for:	hornetq
X# Date created:		2012-03-16
X# Whom:			Radim Kolar
X#
X# $FreeBSD$
X#
X
XPORTNAME=	hornetq
XPORTVERSION=	2.2.14
XCATEGORIES=	net java
XMASTER_SITES=	http://downloads.jboss.org/hornetq/
XDISTNAME=	${PORTNAME}-${PORTVERSION}.Final
X
XMAINTAINER=	hsn at sendmail.cz
XCOMMENT=	Multi-protocol asynchronous messaging system
X
XLICENSE=	LGPL21
X
XPORTDOCS=	quickstart-guide api rest-api user-manual \
X		rest-interface-manual README.html
X
XUSE_RC_SUBR=	hornetq
XUSE_JAVA=	yes
XJAVA_VERSION=	1.6
XJAVA_VENDOR=	openjdk
X
XNO_BUILD=	yes
XCONFIG_DIRS=	clustered non-clustered
XCONFIG_FILES=	hornetq-beans.xml hornetq-users.xml hornetq-configuration.xml \
X		jndi.properties hornetq-jms.xml logging.properties
X
X#USE_AUTOTOOLS=	aclocal libtool autoconf automake
XCONFIGURE_WRKSRC=	${WRKSRC}/native-src
XLIBTOOLFILES=	native-src/aclocal.m4
XACLOCAL_ARGS=	--acdir=${ACLOCAL_DIR} -I ${LOCALBASE}/share/aclocal/
XAUTOMAKE_ARGS=	--add-missing -c
X
Xpost-extract:
X	    ${RM} -r ${WRKSRC}/tools ${WRKSRC}/native-src ${WRKSRC}/config/jboss-as*
X	    ${RM} ${WRKSRC}/bin/*.bat ${WRKSRC}/bin/*.so ${WRKSRC}/bin/build.sh
X	    ${MV} ${WRKSRC}/schemas ${WRKSRC}/config
X.for dir in ${CONFIG_DIRS}
X.for config in ${CONFIG_FILES}
X	    ${MV} ${WRKSRC}/config/stand-alone/${dir}/${config} ${WRKSRC}/config/stand-alone/${dir}/${config}.sample
X.endfor
X.endfor
X
Xdo-install:
X	    ${MKDIR} ${DATADIR}
X	    ${MKDIR} ${DATADIR}/bin
X	    ${INSTALL_SCRIPT} ${WRKSRC}/bin/*.sh ${DATADIR}/bin
X	    ${MKDIR} ${DOCSDIR}
X	    cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${DOCSDIR}
X	    cd ${WRKSRC} && ${COPYTREE_SHARE} lib ${DATADIR}
X	    ${RM} -f ${WRKSRC}/config/stand-alone/clustered/*.orig
X	    ${RM} -f ${WRKSRC}/config/stand-alone/non-clustered/*.orig
X	    cd ${WRKSRC} && ${COPYTREE_SHARE} config ${DATADIR}
X	    ${MKDIR} ${EXAMPLESDIR}
X	    cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${EXAMPLESDIR}
X
Xpost-install:
X	    PKG_PREFIX="${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
X
X.include <bsd.port.mk>
fae8e0d62bb5d232d08251dd3344893a
echo x - hornetq/pkg-deinstall
sed 's/^X//' >hornetq/pkg-deinstall << '7a31b377e7da004f1c30baf901c324d2'
X#!/bin/sh
X#
X# Removes unchanged configuration files
X#
Xif [ "$2" = "DEINSTALL" ]; then
X   if [ ! -d $PKG_PREFIX/share/hornetq/config/stand-alone ]; then exit 1; fi
X   cd $PKG_PREFIX/share/hornetq/config/stand-alone
X   for cfgdir  in clustered non-clustered; do
X      for cfgfile in hornetq-beans.xml hornetq-users.xml \
X	             hornetq-configuration.xml jndi.properties \
X		     hornetq-jms.xml logging.properties; do
X       if cmp -s $cfgdir/$cfgfile.sample $cfgdir/$cfgfile; then
X          rm $cfgdir/$cfgfile
X       fi
X       done
X   done
Xfi
7a31b377e7da004f1c30baf901c324d2
echo x - hornetq/distinfo
sed 's/^X//' >hornetq/distinfo << '0d32e77b8e303243d9f64f025d8f9379'
XSHA256 (hornetq-2.2.14.Final.tar.gz) = 40f4878949f80b894db7f7d951f3eadf16116879d37a84f2009a8e02cb4574f0
XSIZE (hornetq-2.2.14.Final.tar.gz) = 17208133
0d32e77b8e303243d9f64f025d8f9379
exit
--- .shar ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list