remove apache-activemq; it's not directly used by any ports, it's not been

updated in 3 years and as such there are a bunch of unfixed security issues.
do everyone a service and just drop it. rabbitmq can be used as an alternative.

ok kmos@
This commit is contained in:
jasper 2020-09-12 15:33:31 +00:00
parent 45d2cb59e9
commit 2daed53c4d
8 changed files with 1 additions and 1081 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.1221 2020/09/08 22:35:38 abieber Exp $
# $OpenBSD: Makefile,v 1.1222 2020/09/12 15:33:31 jasper Exp $
SUBDIR =
SUBDIR += adns
@ -8,7 +8,6 @@
SUBDIR += amule
SUBDIR += angst
SUBDIR += ap-utils
SUBDIR += apache-activemq
SUBDIR += argus
SUBDIR += argus-clients
SUBDIR += arp-scan

View File

@ -1,55 +0,0 @@
# $OpenBSD: Makefile,v 1.35 2020/03/20 16:44:25 naddy Exp $
PKG_ARCH= *
COMMENT= open source message broker implementing JMS 1.1
V= 5.14.5
DISTNAME= apache-activemq-$V
REVISION= 3
CATEGORIES= net
HOMEPAGE= https://activemq.apache.org/
# Apache2
PERMIT_PACKAGE= Yes
MASTER_SITES= ${MASTER_SITE_APACHE:=activemq/${V}/}
EXTRACT_SUFX= -bin.tar.gz
MODULES= java
MODJAVA_VER= 1.8+
RUN_DEPENDS= java/javaPathHelper
SUBST_VARS += V
NO_BUILD= Yes
NO_TEST= Yes
pre-configure:
${SUBST_CMD} ${WRKSRC}/bin/activemq
INSTALL_DIRS= ${PREFIX}/activemq/lib/ \
${PREFIX}/activemq/webapps{,-demo}/ \
${PREFIX}/activemq/examples \
${PREFIX}/share/examples/activemq/
do-install:
-rm -r ${WRKSRC}/bin/{macosx,linux-x86-*,*.orig} \
${WRKSRC}/data
${INSTALL_DATA_DIR} ${PREFIX}/activemq/
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/activemq/conf
cd ${WRKSRC} && tar cf - * | tar xf - -C ${PREFIX}/activemq/
${INSTALL_DATA} ${FILESDIR}/activemq.conf ${PREFIX}/share/examples/activemq/
mv ${PREFIX}/activemq/conf ${PREFIX}/share/examples/activemq/
# Lots of weird modes to fixup, use a sledgehammer
find ${INSTALL_DIRS} -type f -exec chmod ${SHAREMODE} {} +
find ${PREFIX}/activemq/bin/ -type f -name \*.jar \
-exec chmod ${BINMODE} {} +
cd ${PREFIX}/activemq && ln -sf /var/db/activemq/data data
cd ${PREFIX}/activemq && ln -sf /var/db/activemq/tmp tmp
cd ${PREFIX}/activemq && ln -sf ${SYSCONFDIR}/activemq conf
.include <bsd.port.mk>

View File

@ -1,2 +0,0 @@
SHA256 (apache-activemq-5.14.5-bin.tar.gz) = pLwxDMs/tDnQuhWeQ/DgjoBzyvBQyV5eB8Gm1fP5qG4=
SIZE (apache-activemq-5.14.5-bin.tar.gz) = 54294367

View File

@ -1,172 +0,0 @@
# ------------------------------------------------------------------------
# Configuration file for running Apache Active MQ as standalone provider
#
# This file overwrites the predefined settings of the sysv init-script
#
# Active MQ installation dir
if [ -z "$ACTIVEMQ_HOME" ] ; then
# try to find ACTIVEMQ
if [ -d /opt/activemq ] ; then
ACTIVEMQ_HOME=/opt/activemq
fi
if [ -d "${HOME}/opt/activemq" ] ; then
ACTIVEMQ_HOME="${HOME}/opt/activemq"
fi
## resolve links - $0 may be a link to activemq's home
PRG="$0"
progname=`basename "$0"`
saveddir=`pwd`
# need this for relative symlinks
dirname_prg=`dirname "$PRG"`
cd "$dirname_prg"
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> (.*)$'`
if expr "$link" : '.*/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
ACTIVEMQ_HOME=`dirname "$PRG"`/..
cd "$saveddir"
# make it fully qualified
ACTIVEMQ_HOME=`cd "$ACTIVEMQ_HOME" && pwd`
fi
if [ -z "$ACTIVEMQ_BASE" ] ; then
ACTIVEMQ_BASE="$ACTIVEMQ_HOME"
fi
# Active MQ configuration directory
if [ -z "$ACTIVEMQ_CONF" ] ; then
# For backwards compat with old variables we let ACTIVEMQ_CONFIG_DIR set ACTIVEMQ_CONF
if [ -z "$ACTIVEMQ_CONFIG_DIR" ] ; then
ACTIVEMQ_CONF="$ACTIVEMQ_BASE/conf"
else
ACTIVEMQ_CONF="$ACTIVEMQ_CONFIG_DIR"
fi
fi
# Configure a user with non root priviledges, if no user is specified do not change user
if [ -z "$ACTIVEMQ_USER" ] ; then
ACTIVEMQ_USER=""
fi
# Active MQ data directory
if [ -z "$ACTIVEMQ_DATA" ] ; then
# For backwards compat with old variables we let ACTIVEMQ_DATA_DIR set ACTIVEMQ_DATA
if [ -z "$ACTIVEMQ_DATA_DIR" ] ; then
ACTIVEMQ_DATA="$ACTIVEMQ_BASE/data"
else
ACTIVEMQ_DATA="$ACTIVEMQ_DATA_DIR"
fi
fi
if [ -z "$ACTIVEMQ_TMP" ] ; then
ACTIVEMQ_TMP="$ACTIVEMQ_BASE/tmp"
fi
setCurrentUser(){
CUSER=`whoami 2>/dev/null`
# Solaris fix
if [ ! $? -eq 0 ]; then
CUSER=`/usr/ucb/whoami 2>/dev/null`
fi
}
if [ ! -d "$ACTIVEMQ_DATA" ]; then
setCurrentUser
if ( [ -z "$ACTIVEMQ_USER" ] || [ "$ACTIVEMQ_USER" = "$CUSER" ] );then
mkdir $ACTIVEMQ_DATA
elif [ "`id -u`" = "0" ];then
su -c "mkdir $ACTIVEMQ_DATA" - $ACTIVEMQ_USER;
fi
fi
# Location of the pidfile
if [ -z "$ACTIVEMQ_PIDFILE" ]; then
ACTIVEMQ_PIDFILE="$ACTIVEMQ_DATA/activemq-`hostname`.pid"
fi
# Location of the java installation
# Specify the location of your java installation using JAVA_HOME, or specify the
# path to the "java" binary using JAVACMD
# (set JAVACMD to "auto" for automatic detection)
#JAVA_HOME=""
JAVACMD="auto"
# Set jvm memory configuration
#if [ -z "$ACTIVEMQ_OPTS_MEMORY" ] ; then
#ACTIVEMQ_OPTS_MEMORY="-Xms1G -Xmx1G"
#fi
# Uncomment to enable audit logging
#ACTIVEMQ_OPTS="$ACTIVEMQ_OPTS -Dorg.apache.activemq.audit=true"
# Set jvm jmx configuration
# This enables jmx access over a configured jmx-tcp-port.
# You have to configure the first four settings if you run a ibm jvm, caused by the
# fact that IBM's jvm does not support VirtualMachine.attach(PID).
# JMX access is needed for quering a running activemq instance to gain data or to
# trigger management operations.
#
# Example for ${ACTIVEMQ_CONF}/jmx.access:
# ---
# # The "monitorRole" role has readonly access.
# # The "controlRole" role has readwrite access.
# monitorRole readonly
# controlRole readwrite
# ---
#
# Example for ${ACTIVEMQ_CONF}/jmx.password:
# ---
# # The "monitorRole" role has password "abc123".
# # # The "controlRole" role has password "abcd1234".
# monitorRole abc123
# controlRole abcd1234
# ---
#
# ACTIVEMQ_SUNJMX_START="-Dcom.sun.management.jmxremote.port=11099 "
# ACTIVEMQ_SUNJMX_START="$ACTIVEMQ_SUNJMX_START -Dcom.sun.management.jmxremote.password.file=${ACTIVEMQ_CONF}/jmx.password"
# ACTIVEMQ_SUNJMX_START="$ACTIVEMQ_SUNJMX_START -Dcom.sun.management.jmxremote.access.file=${ACTIVEMQ_CONF}/jmx.access"
# ACTIVEMQ_SUNJMX_START="$ACTIVEMQ_SUNJMX_START -Dcom.sun.management.jmxremote.ssl=false"
ACTIVEMQ_SUNJMX_START="$ACTIVEMQ_SUNJMX_START -Dcom.sun.management.jmxremote"
# Set jvm jmx configuration for controlling the broker process
# You only have to configure the first four settings if you run a ibm jvm, caused by the
# fact that IBM's jvm does not support VirtualMachine.attach(PID)
# (see also com.sun.management.jmxremote.port, .jmx.password.file and .jmx.access.file )
#ACTIVEMQ_SUNJMX_CONTROL="--jmxurl service:jmx:rmi:///jndi/rmi://127.0.0.1:11099/jmxrmi --jmxuser controlRole --jmxpassword abcd1234"
ACTIVEMQ_SUNJMX_CONTROL=""
# Specify the queue manager URL for using "browse" option of sysv initscript
if [ -z "$ACTIVEMQ_QUEUEMANAGERURL" ]; then
ACTIVEMQ_QUEUEMANAGERURL="--amqurl tcp://localhost:61616"
fi
# Set additional JSE arguments
ACTIVEMQ_SSL_OPTS="$SSL_OPTS"
# Uncomment to enable YourKit profiling
#ACTIVEMQ_DEBUG_OPTS="-agentlib:yjpagent"
# Uncomment to enable remote debugging
#ACTIVEMQ_DEBUG_OPTS="-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005"
# ActiveMQ tries to shutdown the broker by jmx,
# after a specified number of seconds send SIGKILL
if [ -z "$ACTIVEMQ_KILL_MAXSECONDS" ]; then
ACTIVEMQ_KILL_MAXSECONDS=30
fi

View File

@ -1,33 +0,0 @@
$OpenBSD: patch-bin_activemq,v 1.9 2016/02/25 07:35:31 jasper Exp $
--- bin/activemq.orig Tue Feb 2 19:26:49 2016
+++ bin/activemq Sat Feb 13 12:31:41 2016
@@ -170,10 +170,10 @@ fi
# For using instances
if ( basename $0 | grep "activemq-instance-" > /dev/null);then
INST="`basename $0|sed 's/^activemq-instance-//;s/\.sh$//'`"
- ACTIVEMQ_CONFIGS="/etc/default/activemq-instance-${INST} $HOME/.activemqrc-instance-${INST}"
+ ACTIVEMQ_CONFIGS="${SYSCONFDIR}/activemq-instance-${INST} $HOME/.activemqrc-instance-${INST}"
echo "INFO: Using alternative activemq configuration files: $ACTIVEMQ_CONFIGS"
else
- ACTIVEMQ_CONFIGS="/etc/default/activemq $HOME/.activemqrc $ACTIVEMQ_HOME/bin/env"
+ ACTIVEMQ_CONFIGS="${SYSCONFDIR}/activemq.conf $HOME/.activemqrc $ACTIVEMQ_HOME/bin/env"
fi
# load activemq configuration
@@ -557,7 +557,6 @@ invoke_stop(){
echo
echo "INFO: Regular shutdown not successful, sending SIGKILL to process"
invoke_kill
- RET="$?"
fi
elif [ -f "$ACTIVEMQ_PIDFILE" ];then
echo "ERROR: No or outdated process id in '$ACTIVEMQ_PIDFILE'"
@@ -631,7 +630,7 @@ Configuration of this script:
Modify $ACTIVEMQ_BASE/bin/env or create a copy of that file on a suitable location.
To use additional configurations for running multiple instances on the same operating system
rename or symlink script to a name matching to activemq-instance-<INSTANCENAME>.
- This changes the configuration location to /etc/default/activemq-instance-<INSTANCENAME> and
+ This changes the configuration location to ${SYSCONFDIR}/activemq-instance-<INSTANCENAME> and
\$HOME/.activemqrc-instance-<INSTANCENAME>.
EOF
exit 1

View File

@ -1,5 +0,0 @@
Apache ActiveMQ is the most popular and powerful open source
messaging and Integration Patterns server. Apache ActiveMQ is fast,
supports many Cross Language Clients and Protocols, comes with easy to
use Enterprise Integration Patterns and many advanced features while
fully supporting JMS 1.1 and J2EE 1.4.

View File

@ -1,788 +0,0 @@
@comment $OpenBSD: PLIST,v 1.21 2016/12/26 12:33:08 jasper Exp $
@newgroup _activemq:714
@newuser _activemq:714:714:daemon:Apache ActiveMQ:/var/db/activemq:/sbin/nologin
@comment needs a RW homedir to prevent java.io.IOException
@extraunexec rm -rf /var/db/activemq/{data,tmp,activemq-data}/*
activemq/
activemq/LICENSE
activemq/NOTICE
activemq/README.txt
activemq/activemq-all-${V}.jar
activemq/bin/
activemq/bin/activemq
activemq/bin/activemq-diag
activemq/bin/activemq.jar
activemq/bin/env
activemq/bin/wrapper.jar
activemq/conf
activemq/data
activemq/docs/
activemq/docs/WebConsole-README.txt
activemq/docs/index.html
activemq/docs/user-guide.html
activemq/examples/
activemq/examples/amqp/
activemq/examples/amqp/java/
activemq/examples/amqp/java/pom.xml
activemq/examples/amqp/java/readme.md
activemq/examples/amqp/java/src/
activemq/examples/amqp/java/src/main/
activemq/examples/amqp/java/src/main/java/
activemq/examples/amqp/java/src/main/java/example/
activemq/examples/amqp/java/src/main/java/example/Listener.java
activemq/examples/amqp/java/src/main/java/example/Publisher.java
activemq/examples/amqp/python/
activemq/examples/amqp/python/listener.py
activemq/examples/amqp/python/publisher.py
activemq/examples/conf/
activemq/examples/conf/activemq-demo.xml
activemq/examples/conf/activemq-dynamic-network-broker1.xml
activemq/examples/conf/activemq-dynamic-network-broker2.xml
activemq/examples/conf/activemq-jdbc-performance.xml
activemq/examples/conf/activemq-jdbc.xml
activemq/examples/conf/activemq-leveldb-replicating.xml
activemq/examples/conf/activemq-mqtt.xml
activemq/examples/conf/activemq-scalability.xml
activemq/examples/conf/activemq-security.xml
activemq/examples/conf/activemq-specjms.xml
activemq/examples/conf/activemq-static-network-broker1.xml
activemq/examples/conf/activemq-static-network-broker2.xml
activemq/examples/conf/activemq-stomp.xml
activemq/examples/conf/activemq-throughput.xml
activemq/examples/conf/activemq.xml
activemq/examples/conf/camel.xml
activemq/examples/conf/jetty-demo.xml
activemq/examples/conf/log4j.properties
activemq/examples/conf/resin-web.xml
activemq/examples/conf/web.xml
activemq/examples/mqtt/
activemq/examples/mqtt/java/
activemq/examples/mqtt/java/pom.xml
activemq/examples/mqtt/java/readme.md
activemq/examples/mqtt/java/src/
activemq/examples/mqtt/java/src/main/
activemq/examples/mqtt/java/src/main/java/
activemq/examples/mqtt/java/src/main/java/example/
activemq/examples/mqtt/java/src/main/java/example/Listener.java
activemq/examples/mqtt/java/src/main/java/example/Publisher.java
activemq/examples/mqtt/websocket/
activemq/examples/mqtt/websocket/css/
activemq/examples/mqtt/websocket/css/bootstrap.min.css
activemq/examples/mqtt/websocket/css/bootstrap.min.responsive.css
activemq/examples/mqtt/websocket/img/
activemq/examples/mqtt/websocket/img/glyphicons-halflings-white.png
activemq/examples/mqtt/websocket/img/glyphicons-halflings.png
activemq/examples/mqtt/websocket/index.html
activemq/examples/mqtt/websocket/js/
activemq/examples/mqtt/websocket/js/jquery-1.7.2.min.js
activemq/examples/mqtt/websocket/js/mqttws31.js
activemq/examples/mqtt/websocket/readme.md
activemq/examples/openwire/
activemq/examples/openwire/advanced-scenarios/
activemq/examples/openwire/advanced-scenarios/jms-example-composite-destinations/
activemq/examples/openwire/advanced-scenarios/jms-example-composite-destinations/pom.xml
activemq/examples/openwire/advanced-scenarios/jms-example-composite-destinations/readme.md
activemq/examples/openwire/advanced-scenarios/jms-example-composite-destinations/src/
activemq/examples/openwire/advanced-scenarios/jms-example-composite-destinations/src/main/
activemq/examples/openwire/advanced-scenarios/jms-example-composite-destinations/src/main/java/
activemq/examples/openwire/advanced-scenarios/jms-example-composite-destinations/src/main/java/example/
activemq/examples/openwire/advanced-scenarios/jms-example-composite-destinations/src/main/java/example/composite/
activemq/examples/openwire/advanced-scenarios/jms-example-composite-destinations/src/main/java/example/composite/dest/
activemq/examples/openwire/advanced-scenarios/jms-example-composite-destinations/src/main/java/example/composite/dest/Consumer.java
activemq/examples/openwire/advanced-scenarios/jms-example-composite-destinations/src/main/java/example/composite/dest/Producer.java
activemq/examples/openwire/advanced-scenarios/jms-example-durable-sub/
activemq/examples/openwire/advanced-scenarios/jms-example-durable-sub/pom.xml
activemq/examples/openwire/advanced-scenarios/jms-example-durable-sub/readme.md
activemq/examples/openwire/advanced-scenarios/jms-example-durable-sub/src/
activemq/examples/openwire/advanced-scenarios/jms-example-durable-sub/src/main/
activemq/examples/openwire/advanced-scenarios/jms-example-durable-sub/src/main/java/
activemq/examples/openwire/advanced-scenarios/jms-example-durable-sub/src/main/java/example/
activemq/examples/openwire/advanced-scenarios/jms-example-durable-sub/src/main/java/example/topic/
activemq/examples/openwire/advanced-scenarios/jms-example-durable-sub/src/main/java/example/topic/durable/
activemq/examples/openwire/advanced-scenarios/jms-example-durable-sub/src/main/java/example/topic/durable/Publisher.java
activemq/examples/openwire/advanced-scenarios/jms-example-durable-sub/src/main/java/example/topic/durable/Subscriber.java
activemq/examples/openwire/advanced-scenarios/jms-example-exclusive-consumer/
activemq/examples/openwire/advanced-scenarios/jms-example-exclusive-consumer/pom.xml
activemq/examples/openwire/advanced-scenarios/jms-example-exclusive-consumer/readme.md
activemq/examples/openwire/advanced-scenarios/jms-example-exclusive-consumer/src/
activemq/examples/openwire/advanced-scenarios/jms-example-exclusive-consumer/src/main/
activemq/examples/openwire/advanced-scenarios/jms-example-exclusive-consumer/src/main/java/
activemq/examples/openwire/advanced-scenarios/jms-example-exclusive-consumer/src/main/java/example/
activemq/examples/openwire/advanced-scenarios/jms-example-exclusive-consumer/src/main/java/example/queue/
activemq/examples/openwire/advanced-scenarios/jms-example-exclusive-consumer/src/main/java/example/queue/exclusive/
activemq/examples/openwire/advanced-scenarios/jms-example-exclusive-consumer/src/main/java/example/queue/exclusive/Consumer.java
activemq/examples/openwire/advanced-scenarios/jms-example-exclusive-consumer/src/main/java/example/queue/exclusive/Producer.java
activemq/examples/openwire/advanced-scenarios/jms-example-message-browser/
activemq/examples/openwire/advanced-scenarios/jms-example-message-browser/pom.xml
activemq/examples/openwire/advanced-scenarios/jms-example-message-browser/readme.md
activemq/examples/openwire/advanced-scenarios/jms-example-message-browser/src/
activemq/examples/openwire/advanced-scenarios/jms-example-message-browser/src/main/
activemq/examples/openwire/advanced-scenarios/jms-example-message-browser/src/main/java/
activemq/examples/openwire/advanced-scenarios/jms-example-message-browser/src/main/java/example/
activemq/examples/openwire/advanced-scenarios/jms-example-message-browser/src/main/java/example/browser/
activemq/examples/openwire/advanced-scenarios/jms-example-message-browser/src/main/java/example/browser/Browser.java
activemq/examples/openwire/advanced-scenarios/jms-example-message-browser/src/main/java/example/browser/Producer.java
activemq/examples/openwire/advanced-scenarios/jms-example-queue/
activemq/examples/openwire/advanced-scenarios/jms-example-queue-selector/
activemq/examples/openwire/advanced-scenarios/jms-example-queue-selector/pom.xml
activemq/examples/openwire/advanced-scenarios/jms-example-queue-selector/readme.md
activemq/examples/openwire/advanced-scenarios/jms-example-queue-selector/src/
activemq/examples/openwire/advanced-scenarios/jms-example-queue-selector/src/main/
activemq/examples/openwire/advanced-scenarios/jms-example-queue-selector/src/main/java/
activemq/examples/openwire/advanced-scenarios/jms-example-queue-selector/src/main/java/example/
activemq/examples/openwire/advanced-scenarios/jms-example-queue-selector/src/main/java/example/queue/
activemq/examples/openwire/advanced-scenarios/jms-example-queue-selector/src/main/java/example/queue/selector/
activemq/examples/openwire/advanced-scenarios/jms-example-queue-selector/src/main/java/example/queue/selector/Consumer.java
activemq/examples/openwire/advanced-scenarios/jms-example-queue-selector/src/main/java/example/queue/selector/Producer.java
activemq/examples/openwire/advanced-scenarios/jms-example-queue/pom.xml
activemq/examples/openwire/advanced-scenarios/jms-example-queue/readme.md
activemq/examples/openwire/advanced-scenarios/jms-example-queue/src/
activemq/examples/openwire/advanced-scenarios/jms-example-queue/src/main/
activemq/examples/openwire/advanced-scenarios/jms-example-queue/src/main/java/
activemq/examples/openwire/advanced-scenarios/jms-example-queue/src/main/java/example/
activemq/examples/openwire/advanced-scenarios/jms-example-queue/src/main/java/example/queue/
activemq/examples/openwire/advanced-scenarios/jms-example-queue/src/main/java/example/queue/Consumer.java
activemq/examples/openwire/advanced-scenarios/jms-example-queue/src/main/java/example/queue/Producer.java
activemq/examples/openwire/advanced-scenarios/jms-example-queue/src/main/resources/
activemq/examples/openwire/advanced-scenarios/jms-example-queue/src/main/resources/log4j.properties
activemq/examples/openwire/advanced-scenarios/jms-example-temp-destinations/
activemq/examples/openwire/advanced-scenarios/jms-example-temp-destinations/pom.xml
activemq/examples/openwire/advanced-scenarios/jms-example-temp-destinations/readme.md
activemq/examples/openwire/advanced-scenarios/jms-example-temp-destinations/src/
activemq/examples/openwire/advanced-scenarios/jms-example-temp-destinations/src/main/
activemq/examples/openwire/advanced-scenarios/jms-example-temp-destinations/src/main/java/
activemq/examples/openwire/advanced-scenarios/jms-example-temp-destinations/src/main/java/example/
activemq/examples/openwire/advanced-scenarios/jms-example-temp-destinations/src/main/java/example/tempdest/
activemq/examples/openwire/advanced-scenarios/jms-example-temp-destinations/src/main/java/example/tempdest/Consumer.java
activemq/examples/openwire/advanced-scenarios/jms-example-temp-destinations/src/main/java/example/tempdest/ProducerRequestReply.java
activemq/examples/openwire/advanced-scenarios/jms-example-topic/
activemq/examples/openwire/advanced-scenarios/jms-example-topic/pom.xml
activemq/examples/openwire/advanced-scenarios/jms-example-topic/readme.md
activemq/examples/openwire/advanced-scenarios/jms-example-topic/src/
activemq/examples/openwire/advanced-scenarios/jms-example-topic/src/main/
activemq/examples/openwire/advanced-scenarios/jms-example-topic/src/main/java/
activemq/examples/openwire/advanced-scenarios/jms-example-topic/src/main/java/example/
activemq/examples/openwire/advanced-scenarios/jms-example-topic/src/main/java/example/topic/
activemq/examples/openwire/advanced-scenarios/jms-example-topic/src/main/java/example/topic/Publisher.java
activemq/examples/openwire/advanced-scenarios/jms-example-topic/src/main/java/example/topic/Subscriber.java
activemq/examples/openwire/advanced-scenarios/jms-example-topic/src/main/resources/
activemq/examples/openwire/advanced-scenarios/jms-example-topic/src/main/resources/log4j.properties
activemq/examples/openwire/advanced-scenarios/jms-example-transaction/
activemq/examples/openwire/advanced-scenarios/jms-example-transaction/pom.xml
activemq/examples/openwire/advanced-scenarios/jms-example-transaction/readme.md
activemq/examples/openwire/advanced-scenarios/jms-example-transaction/src/
activemq/examples/openwire/advanced-scenarios/jms-example-transaction/src/main/
activemq/examples/openwire/advanced-scenarios/jms-example-transaction/src/main/java/
activemq/examples/openwire/advanced-scenarios/jms-example-transaction/src/main/java/example/
activemq/examples/openwire/advanced-scenarios/jms-example-transaction/src/main/java/example/transaction/
activemq/examples/openwire/advanced-scenarios/jms-example-transaction/src/main/java/example/transaction/Client.java
activemq/examples/openwire/advanced-scenarios/jms-example-wildcard-consumer/
activemq/examples/openwire/advanced-scenarios/jms-example-wildcard-consumer/pom.xml
activemq/examples/openwire/advanced-scenarios/jms-example-wildcard-consumer/readme.md
activemq/examples/openwire/advanced-scenarios/jms-example-wildcard-consumer/src/
activemq/examples/openwire/advanced-scenarios/jms-example-wildcard-consumer/src/main/
activemq/examples/openwire/advanced-scenarios/jms-example-wildcard-consumer/src/main/java/
activemq/examples/openwire/advanced-scenarios/jms-example-wildcard-consumer/src/main/java/example/
activemq/examples/openwire/advanced-scenarios/jms-example-wildcard-consumer/src/main/java/example/wildcard/
activemq/examples/openwire/advanced-scenarios/jms-example-wildcard-consumer/src/main/java/example/wildcard/Client.java
activemq/examples/openwire/advanced-scenarios/pom.xml
activemq/examples/openwire/advanced-scenarios/readme.md
activemq/examples/openwire/cpp/
activemq/examples/openwire/cpp/Listener.cpp
activemq/examples/openwire/cpp/Publisher.cpp
activemq/examples/openwire/cpp/readme.md
activemq/examples/openwire/csharp/
activemq/examples/openwire/csharp/ActiveMQExamples/
activemq/examples/openwire/csharp/ActiveMQExamples/ActiveMQExamples.sln
activemq/examples/openwire/csharp/ActiveMQExamples/ActiveMQExamples.userprefs
activemq/examples/openwire/csharp/ActiveMQExamples/Listener/
activemq/examples/openwire/csharp/ActiveMQExamples/Listener/AssemblyInfo.cs
activemq/examples/openwire/csharp/ActiveMQExamples/Listener/Listener.cs
activemq/examples/openwire/csharp/ActiveMQExamples/Listener/Listener.csproj
activemq/examples/openwire/csharp/ActiveMQExamples/Listener/NMSTracer.cs
activemq/examples/openwire/csharp/ActiveMQExamples/Publisher/
activemq/examples/openwire/csharp/ActiveMQExamples/Publisher/AssemblyInfo.cs
activemq/examples/openwire/csharp/ActiveMQExamples/Publisher/NMSTracer.cs
activemq/examples/openwire/csharp/ActiveMQExamples/Publisher/Publisher.cs
activemq/examples/openwire/csharp/ActiveMQExamples/Publisher/Publisher.csproj
activemq/examples/openwire/csharp/readme.md
activemq/examples/openwire/ecommerce/
activemq/examples/openwire/ecommerce/README.txt
activemq/examples/openwire/ecommerce/build.xml
activemq/examples/openwire/ecommerce/src/
activemq/examples/openwire/ecommerce/src/Retailer.java
activemq/examples/openwire/ecommerce/src/Supplier.java
activemq/examples/openwire/ecommerce/src/TransactionsDemo.java
activemq/examples/openwire/ecommerce/src/Vendor.java
activemq/examples/openwire/exploring-jms/
activemq/examples/openwire/exploring-jms/QueuePTPSamples/
activemq/examples/openwire/exploring-jms/QueuePTPSamples/QueueMonitor/
activemq/examples/openwire/exploring-jms/QueuePTPSamples/QueueMonitor/QueueMonitor.java
activemq/examples/openwire/exploring-jms/QueuePTPSamples/QueueMonitor/QueueMonitor.properties
activemq/examples/openwire/exploring-jms/QueuePTPSamples/QueueRoundTrip/
activemq/examples/openwire/exploring-jms/QueuePTPSamples/QueueRoundTrip/QueueRoundTrip.java
activemq/examples/openwire/exploring-jms/QueuePTPSamples/RequestReply/
activemq/examples/openwire/exploring-jms/QueuePTPSamples/RequestReply/Replier.java
activemq/examples/openwire/exploring-jms/QueuePTPSamples/RequestReply/Requestor.java
activemq/examples/openwire/exploring-jms/QueuePTPSamples/SelectorTalk/
activemq/examples/openwire/exploring-jms/QueuePTPSamples/SelectorTalk/SelectorTalk.java
activemq/examples/openwire/exploring-jms/QueuePTPSamples/Talk/
activemq/examples/openwire/exploring-jms/QueuePTPSamples/Talk/Talk.java
activemq/examples/openwire/exploring-jms/QueuePTPSamples/TransactedTalk/
activemq/examples/openwire/exploring-jms/QueuePTPSamples/TransactedTalk/TransactedTalk.java
activemq/examples/openwire/exploring-jms/TopicPubSubSamples/
activemq/examples/openwire/exploring-jms/TopicPubSubSamples/Chat/
activemq/examples/openwire/exploring-jms/TopicPubSubSamples/Chat/Chat.java
activemq/examples/openwire/exploring-jms/TopicPubSubSamples/DurableChat/
activemq/examples/openwire/exploring-jms/TopicPubSubSamples/DurableChat/DurableChat.java
activemq/examples/openwire/exploring-jms/TopicPubSubSamples/HierarchicalChat/
activemq/examples/openwire/exploring-jms/TopicPubSubSamples/HierarchicalChat/HierarchicalChat.java
activemq/examples/openwire/exploring-jms/TopicPubSubSamples/MessageMonitor/
activemq/examples/openwire/exploring-jms/TopicPubSubSamples/MessageMonitor/MessageMonitor.java
activemq/examples/openwire/exploring-jms/TopicPubSubSamples/MessageMonitor/MessageMonitor.properties
activemq/examples/openwire/exploring-jms/TopicPubSubSamples/RequestReply/
activemq/examples/openwire/exploring-jms/TopicPubSubSamples/RequestReply/TopicReplier.java
activemq/examples/openwire/exploring-jms/TopicPubSubSamples/RequestReply/TopicRequestor.java
activemq/examples/openwire/exploring-jms/TopicPubSubSamples/SelectorChat/
activemq/examples/openwire/exploring-jms/TopicPubSubSamples/SelectorChat/SelectorChat.java
activemq/examples/openwire/exploring-jms/TopicPubSubSamples/TransactedChat/
activemq/examples/openwire/exploring-jms/TopicPubSubSamples/TransactedChat/TransactedChat.java
activemq/examples/openwire/exploring-jms/build.xml
activemq/examples/openwire/exploring-jms/conf/
activemq/examples/openwire/exploring-jms/conf/log4j.properties
activemq/examples/openwire/exploring-jms/readme.txt
activemq/examples/openwire/java/
activemq/examples/openwire/java/pom.xml
activemq/examples/openwire/java/readme.md
activemq/examples/openwire/java/src/
activemq/examples/openwire/java/src/main/
activemq/examples/openwire/java/src/main/java/
activemq/examples/openwire/java/src/main/java/example/
activemq/examples/openwire/java/src/main/java/example/Listener.java
activemq/examples/openwire/java/src/main/java/example/Publisher.java
activemq/examples/openwire/swissarmy/
activemq/examples/openwire/swissarmy/build.xml
activemq/examples/openwire/swissarmy/readme.md
activemq/examples/openwire/swissarmy/src/
activemq/examples/openwire/swissarmy/src/CommandLineSupport.java
activemq/examples/openwire/swissarmy/src/ConsumerTool.java
activemq/examples/openwire/swissarmy/src/EmbeddedBroker.java
activemq/examples/openwire/swissarmy/src/Log4jJMSAppenderExample.java
activemq/examples/openwire/swissarmy/src/ProducerAndConsumerTool.java
activemq/examples/openwire/swissarmy/src/ProducerTool.java
activemq/examples/openwire/swissarmy/src/RequesterTool.java
activemq/examples/openwire/swissarmy/src/StompExample.java
activemq/examples/openwire/swissarmy/src/TopicListener.java
activemq/examples/openwire/swissarmy/src/TopicPublisher.java
activemq/examples/openwire/swissarmy/src/jndi.properties
activemq/examples/openwire/swissarmy/src/log4j-jms.properties
activemq/examples/stomp/
activemq/examples/stomp/cpp/
activemq/examples/stomp/cpp/Listener.cpp
activemq/examples/stomp/cpp/Publisher.cpp
activemq/examples/stomp/cpp/readme.md
activemq/examples/stomp/csharp/
activemq/examples/stomp/csharp/ActiveMQExamples/
activemq/examples/stomp/csharp/ActiveMQExamples/ActiveMQExamples.sln
activemq/examples/stomp/csharp/ActiveMQExamples/ActiveMQExamples.userprefs
activemq/examples/stomp/csharp/ActiveMQExamples/Listener/
activemq/examples/stomp/csharp/ActiveMQExamples/Listener/AssemblyInfo.cs
activemq/examples/stomp/csharp/ActiveMQExamples/Listener/Listener.cs
activemq/examples/stomp/csharp/ActiveMQExamples/Listener/Listener.csproj
activemq/examples/stomp/csharp/ActiveMQExamples/Listener/NMSTracer.cs
activemq/examples/stomp/csharp/ActiveMQExamples/Publisher/
activemq/examples/stomp/csharp/ActiveMQExamples/Publisher/AssemblyInfo.cs
activemq/examples/stomp/csharp/ActiveMQExamples/Publisher/NMSTracer.cs
activemq/examples/stomp/csharp/ActiveMQExamples/Publisher/Publisher.cs
activemq/examples/stomp/csharp/ActiveMQExamples/Publisher/Publisher.csproj
activemq/examples/stomp/csharp/readme.md
activemq/examples/stomp/java/
activemq/examples/stomp/java/pom.xml
activemq/examples/stomp/java/readme.md
activemq/examples/stomp/java/src/
activemq/examples/stomp/java/src/main/
activemq/examples/stomp/java/src/main/java/
activemq/examples/stomp/java/src/main/java/example/
activemq/examples/stomp/java/src/main/java/example/Listener.java
activemq/examples/stomp/java/src/main/java/example/Publisher.java
activemq/examples/stomp/perl/
activemq/examples/stomp/perl/listener
activemq/examples/stomp/perl/publisher
activemq/examples/stomp/perl/readme.md
activemq/examples/stomp/php/
activemq/examples/stomp/php/listener.php
activemq/examples/stomp/php/publisher.php
activemq/examples/stomp/php/readme.md
activemq/examples/stomp/python/
activemq/examples/stomp/python/readme.md
activemq/examples/stomp/python/stompest/
activemq/examples/stomp/python/stompest/async/
activemq/examples/stomp/python/stompest/async/__init__.py
activemq/examples/stomp/python/stompest/async/listener.py
activemq/examples/stomp/python/stompest/async/publisher.py
activemq/examples/stomp/python/stompest/readme.md
activemq/examples/stomp/python/stompest/sync/
activemq/examples/stomp/python/stompest/sync/__init__.py
activemq/examples/stomp/python/stompest/sync/listener.py
activemq/examples/stomp/python/stompest/sync/publisher.py
activemq/examples/stomp/python/stomppy/
activemq/examples/stomp/python/stomppy/listener.py
activemq/examples/stomp/python/stomppy/publisher.py
activemq/examples/stomp/python/stomppy/readme.md
activemq/examples/stomp/ruby/
activemq/examples/stomp/ruby/catstomp.rb
activemq/examples/stomp/ruby/listener.rb
activemq/examples/stomp/ruby/publisher.rb
activemq/examples/stomp/ruby/readme.md
activemq/examples/stomp/ruby/stompcat.rb
activemq/examples/stomp/websocket/
activemq/examples/stomp/websocket/css/
activemq/examples/stomp/websocket/css/bootstrap.min.css
activemq/examples/stomp/websocket/css/bootstrap.min.responsive.css
activemq/examples/stomp/websocket/img/
activemq/examples/stomp/websocket/img/glyphicons-halflings-white.png
activemq/examples/stomp/websocket/img/glyphicons-halflings.png
activemq/examples/stomp/websocket/index.html
activemq/examples/stomp/websocket/js/
activemq/examples/stomp/websocket/js/jquery-1.7.2.min.js
activemq/examples/stomp/websocket/js/stomp.js
activemq/examples/stomp/websocket/readme.md
activemq/lib/
activemq/lib/activemq-broker-${V}.jar
activemq/lib/activemq-client-${V}.jar
activemq/lib/activemq-console-${V}.jar
activemq/lib/activemq-jaas-${V}.jar
activemq/lib/activemq-kahadb-store-${V}.jar
activemq/lib/activemq-openwire-legacy-${V}.jar
activemq/lib/activemq-protobuf-1.1.jar
activemq/lib/activemq-rar.txt
activemq/lib/activemq-spring-${V}.jar
activemq/lib/activemq-web-${V}.jar
activemq/lib/camel/
activemq/lib/camel/activemq-camel-${V}.jar
activemq/lib/camel/camel-core-2.16.3.jar
activemq/lib/camel/camel-jms-2.16.3.jar
activemq/lib/camel/camel-spring-2.16.3.jar
activemq/lib/extra/
activemq/lib/extra/mqtt-client-1.14.jar
activemq/lib/geronimo-j2ee-management_1.1_spec-1.0.1.jar
activemq/lib/geronimo-jms_1.1_spec-1.1.1.jar
activemq/lib/geronimo-jta_1.0.1B_spec-1.0.1.jar
activemq/lib/hawtbuf-1.11.jar
activemq/lib/jcl-over-slf4j-1.7.13.jar
activemq/lib/optional/
activemq/lib/optional/activeio-core-3.1.4.jar
activemq/lib/optional/activemq-amqp-${V}.jar
activemq/lib/optional/activemq-http-${V}.jar
activemq/lib/optional/activemq-jdbc-store-${V}.jar
activemq/lib/optional/activemq-jms-pool-${V}.jar
activemq/lib/optional/activemq-leveldb-store-${V}.jar
activemq/lib/optional/activemq-log4j-appender-${V}.jar
activemq/lib/optional/activemq-mqtt-${V}.jar
activemq/lib/optional/activemq-partition-${V}.jar
activemq/lib/optional/activemq-pool-${V}.jar
activemq/lib/optional/activemq-runtime-config-${V}.jar
activemq/lib/optional/activemq-shiro-${V}.jar
activemq/lib/optional/activemq-stomp-${V}.jar
activemq/lib/optional/commons-beanutils-1.9.2.jar
activemq/lib/optional/commons-codec-1.9.jar
activemq/lib/optional/commons-collections-3.2.2.jar
activemq/lib/optional/commons-dbcp2-2.1.1.jar
activemq/lib/optional/commons-lang-2.6.jar
activemq/lib/optional/commons-net-3.5.jar
activemq/lib/optional/commons-pool2-2.4.2.jar
activemq/lib/optional/geronimo-j2ee-connector_1.5_spec-2.0.0.jar
activemq/lib/optional/guava-12.0.jar
activemq/lib/optional/hawtbuf-proto-1.11.jar
activemq/lib/optional/hawtdispatch-1.22.jar
activemq/lib/optional/hawtdispatch-scala-2.11-1.22.jar
activemq/lib/optional/hawtdispatch-transport-1.22.jar
activemq/lib/optional/hawtjni-runtime-1.9.jar
activemq/lib/optional/httpclient-4.5.2.jar
activemq/lib/optional/httpcore-4.4.5.jar
activemq/lib/optional/insight-log-core-1.2.0.Beta4.jar
activemq/lib/optional/insight-log4j-1.2.0.Beta4.jar
activemq/lib/optional/jackson-annotations-2.6.3.jar
activemq/lib/optional/jackson-core-2.6.3.jar
activemq/lib/optional/jackson-databind-2.6.3.jar
activemq/lib/optional/jasypt-1.9.2.jar
activemq/lib/optional/jasypt-spring31-1.9.2.jar
activemq/lib/optional/jaxb2-basics-runtime-0.6.4.jar
activemq/lib/optional/jettison-1.3.8.jar
activemq/lib/optional/jmdns-3.4.1.jar
activemq/lib/optional/leveldb-0.6.jar
activemq/lib/optional/leveldb-api-0.6.jar
activemq/lib/optional/leveldbjni-1.8.jar
activemq/lib/optional/log4j-1.2.17.jar
activemq/lib/optional/org.apache.servicemix.bundles.josql-1.5_5.jar
activemq/lib/optional/org.linkedin.util-core-1.4.0.jar
activemq/lib/optional/org.linkedin.zookeeper-impl-1.4.0.jar
activemq/lib/optional/proton-j-0.16.0.jar
activemq/lib/optional/scala-library-2.11.0.jar
activemq/lib/optional/shiro-core-1.2.4.jar
activemq/lib/optional/shiro-spring-1.2.4.jar
activemq/lib/optional/slf4j-log4j12-1.7.13.jar
activemq/lib/optional/snappy-0.2.jar
activemq/lib/optional/snappy-java-1.1.2.jar
activemq/lib/optional/spring-aop-4.1.9.RELEASE.jar
activemq/lib/optional/spring-beans-4.1.9.RELEASE.jar
activemq/lib/optional/spring-context-4.1.9.RELEASE.jar
activemq/lib/optional/spring-core-4.1.9.RELEASE.jar
activemq/lib/optional/spring-expression-4.1.9.RELEASE.jar
activemq/lib/optional/spring-jms-4.1.9.RELEASE.jar
activemq/lib/optional/spring-oxm-4.1.9.RELEASE.jar
activemq/lib/optional/spring-tx-4.1.9.RELEASE.jar
activemq/lib/optional/velocity-1.7.jar
activemq/lib/optional/xbean-spring-4.2.jar
activemq/lib/optional/xpp3-1.1.4c.jar
activemq/lib/optional/xstream-1.4.9.jar
activemq/lib/optional/zookeeper-3.4.6.jar
activemq/lib/slf4j-api-1.7.13.jar
activemq/lib/web/
activemq/lib/web/apache-el-8.0.9.M3.jar
activemq/lib/web/apache-jsp-8.0.9.M3.jar
activemq/lib/web/apache-jsp-9.2.13.v20150730.jar
activemq/lib/web/apache-jstl-9.2.13.v20150730.jar
activemq/lib/web/asm-5.0.4.jar
activemq/lib/web/geronimo-annotation_1.0_spec-1.1.1.jar
activemq/lib/web/jdom-1.0.jar
activemq/lib/web/jetty-all-9.2.13.v20150730.jar
activemq/lib/web/jolokia-core-1.3.3.jar
activemq/lib/web/json-simple-1.1.1.jar
activemq/lib/web/org.eclipse.jdt.core-3.8.2.v20130121.jar
activemq/lib/web/rome-1.0.jar
activemq/lib/web/spring-web-4.1.9.RELEASE.jar
activemq/lib/web/spring-webmvc-4.1.9.RELEASE.jar
activemq/lib/web/taglibs-standard-impl-1.2.5.jar
activemq/lib/web/taglibs-standard-spec-1.2.5.jar
activemq/lib/web/tomcat-servlet-api-8.0.24.jar
activemq/lib/web/tomcat-websocket-api-8.0.24.jar
activemq/tmp
activemq/webapps/
activemq/webapps-demo/
activemq/webapps-demo/demo/
activemq/webapps-demo/demo/META-INF/
activemq/webapps-demo/demo/META-INF/LICENSE
activemq/webapps-demo/demo/META-INF/NOTICE
activemq/webapps-demo/demo/WEB-INF/
activemq/webapps-demo/demo/WEB-INF/web.xml
activemq/webapps-demo/demo/chat.css
activemq/webapps-demo/demo/chat.html
activemq/webapps-demo/demo/images/
activemq/webapps-demo/demo/images/activemq-logo.png
activemq/webapps-demo/demo/images/asf-logo.png
activemq/webapps-demo/demo/images/big-bullet.png
activemq/webapps-demo/demo/images/black-footer-bottom.png
activemq/webapps-demo/demo/images/black-footer-left.png
activemq/webapps-demo/demo/images/black-footer-right.png
activemq/webapps-demo/demo/images/bottom-red-bar.png
activemq/webapps-demo/demo/images/checker-bg.png
activemq/webapps-demo/demo/images/content-left.png
activemq/webapps-demo/demo/images/content-right.png
activemq/webapps-demo/demo/images/feed_atom.png
activemq/webapps-demo/demo/images/feed_rss.png
activemq/webapps-demo/demo/images/left-box-bottom.png
activemq/webapps-demo/demo/images/left-box-right.png
activemq/webapps-demo/demo/images/left-box-top.png
activemq/webapps-demo/demo/images/oval-arrow.png
activemq/webapps-demo/demo/images/right-box-bottom.png
activemq/webapps-demo/demo/images/right-box-left.png
activemq/webapps-demo/demo/images/right-box-top.png
activemq/webapps-demo/demo/images/small-bullet-gray.png
activemq/webapps-demo/demo/images/small-bullet-red.png
activemq/webapps-demo/demo/images/spacer.gif
activemq/webapps-demo/demo/images/top-red-bar.png
activemq/webapps-demo/demo/images/white-header-left.png
activemq/webapps-demo/demo/images/white-header-right.png
activemq/webapps-demo/demo/images/white-header-top.png
activemq/webapps-demo/demo/index.html
activemq/webapps-demo/demo/js/
activemq/webapps-demo/demo/js/amq.js
activemq/webapps-demo/demo/js/amq_dojo_adapter.js
activemq/webapps-demo/demo/js/amq_jquery_adapter.js
activemq/webapps-demo/demo/js/amq_prototype_adapter.js
activemq/webapps-demo/demo/js/chat.js
activemq/webapps-demo/demo/js/common.js
activemq/webapps-demo/demo/js/css.js
activemq/webapps-demo/demo/js/dojo.js
activemq/webapps-demo/demo/js/jquery-1.4.2.min.js
activemq/webapps-demo/demo/js/mochi/
activemq/webapps-demo/demo/js/mochi/MochiKit.js
activemq/webapps-demo/demo/js/mochi/__package__.js
activemq/webapps-demo/demo/js/plotkit/
activemq/webapps-demo/demo/js/plotkit/Base.js
activemq/webapps-demo/demo/js/plotkit/Canvas.js
activemq/webapps-demo/demo/js/plotkit/Layout.js
activemq/webapps-demo/demo/js/plotkit/SVG.js
activemq/webapps-demo/demo/js/plotkit/SweetCanvas.js
activemq/webapps-demo/demo/js/plotkit/SweetSVG.js
activemq/webapps-demo/demo/js/plotkit/dummy.svg
activemq/webapps-demo/demo/js/plotkit/iecanvas.htc
activemq/webapps-demo/demo/js/prettify.js
activemq/webapps-demo/demo/js/prototype.js
activemq/webapps-demo/demo/js/standardista-table-sorting.js
activemq/webapps-demo/demo/mqtt/
activemq/webapps-demo/demo/mqtt/chat.css
activemq/webapps-demo/demo/mqtt/chat.js
activemq/webapps-demo/demo/mqtt/index.html
activemq/webapps-demo/demo/mqtt/mqttws31.js
activemq/webapps-demo/demo/portfolio/
activemq/webapps-demo/demo/portfolio/portfolio.html
activemq/webapps-demo/demo/portfolio/portfolio.js
activemq/webapps-demo/demo/send.html
activemq/webapps-demo/demo/style.css
activemq/webapps-demo/demo/styles/
activemq/webapps-demo/demo/styles/prettify.css
activemq/webapps-demo/demo/styles/site.css
activemq/webapps-demo/demo/styles/sorttable.css
activemq/webapps-demo/demo/styles/type-settings.css
activemq/webapps-demo/demo/test/
activemq/webapps-demo/demo/test/amq_test.html
activemq/webapps-demo/demo/test/assets/
activemq/webapps-demo/demo/test/assets/README
activemq/webapps-demo/demo/test/assets/jsunittest.js
activemq/webapps-demo/demo/test/assets/unittest.css
activemq/webapps-demo/demo/websocket/
activemq/webapps-demo/demo/websocket/chat.css
activemq/webapps-demo/demo/websocket/chat.js
activemq/webapps-demo/demo/websocket/index.html
activemq/webapps-demo/demo/websocket/stomp.js
activemq/webapps/admin/
activemq/webapps/admin/403.html
activemq/webapps/admin/404.html
activemq/webapps/admin/500.html
activemq/webapps/admin/META-INF/
activemq/webapps/admin/META-INF/LICENSE
activemq/webapps/admin/META-INF/NOTICE
activemq/webapps/admin/WEB-INF/
activemq/webapps/admin/WEB-INF/classes/
activemq/webapps/admin/WEB-INF/classes/org/
activemq/webapps/admin/WEB-INF/classes/org/apache/
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/WebConsoleStarter$OsgiUtil.class
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/WebConsoleStarter.class
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/config/
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/config/OsgiConfiguration.class
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/CopyMessage.class
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/CreateDestination.class
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/CreateSubscriber.class
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteDestination.class
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteJob.class
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteMessage.class
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteSubscriber.class
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/MoveMessage.class
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/PurgeDestination.class
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/RetryMessage.class
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/SendMessage.class
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/filter/
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/filter/ApplicationContextFilter$1.class
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/filter/ApplicationContextFilter$2.class
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/filter/ApplicationContextFilter.class
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/handler/
activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/handler/BindingBeanNameUrlHandlerMapping.class
activemq/webapps/admin/WEB-INF/dispatcher-servlet.xml
activemq/webapps/admin/WEB-INF/jspf/
activemq/webapps/admin/WEB-INF/jspf/headertags.jspf
activemq/webapps/admin/WEB-INF/tags/
activemq/webapps/admin/WEB-INF/tags/form/
activemq/webapps/admin/WEB-INF/tags/form/checkbox.tag
activemq/webapps/admin/WEB-INF/tags/form/escape.tag
activemq/webapps/admin/WEB-INF/tags/form/forEachMapEntry.tag
activemq/webapps/admin/WEB-INF/tags/form/option.tag
activemq/webapps/admin/WEB-INF/tags/form/short.tag
activemq/webapps/admin/WEB-INF/tags/form/text.tag
activemq/webapps/admin/WEB-INF/tags/form/tooltip.tag
activemq/webapps/admin/WEB-INF/tags/form/uri.tag
activemq/webapps/admin/WEB-INF/tags/jms/
activemq/webapps/admin/WEB-INF/tags/jms/forEachConnection.tag
activemq/webapps/admin/WEB-INF/tags/jms/forEachMessage.tag
activemq/webapps/admin/WEB-INF/tags/jms/formatTimestamp.tag
activemq/webapps/admin/WEB-INF/tags/jms/persistent.tag
activemq/webapps/admin/WEB-INF/web.xml
activemq/webapps/admin/WEB-INF/webconsole-default.xml
activemq/webapps/admin/WEB-INF/webconsole-embedded.xml
activemq/webapps/admin/WEB-INF/webconsole-invm.xml
activemq/webapps/admin/WEB-INF/webconsole-jndi.xml
activemq/webapps/admin/WEB-INF/webconsole-osgi.xml
activemq/webapps/admin/WEB-INF/webconsole-properties.xml
activemq/webapps/admin/WEB-INF/webconsole-query.xml
activemq/webapps/admin/browse.jsp
activemq/webapps/admin/connection.jsp
activemq/webapps/admin/connections.jsp
activemq/webapps/admin/decorators/
activemq/webapps/admin/decorators/footer.jsp
activemq/webapps/admin/decorators/head.jsp
activemq/webapps/admin/decorators/header.jsp
activemq/webapps/admin/graph.jsp
activemq/webapps/admin/images/
activemq/webapps/admin/images/activemq-logo.png
activemq/webapps/admin/images/asf-logo.png
activemq/webapps/admin/images/big-bullet.png
activemq/webapps/admin/images/black-footer-bottom.png
activemq/webapps/admin/images/black-footer-left.png
activemq/webapps/admin/images/black-footer-right.png
activemq/webapps/admin/images/bottom-red-bar.png
activemq/webapps/admin/images/checker-bg.png
activemq/webapps/admin/images/content-left.png
activemq/webapps/admin/images/content-right.png
activemq/webapps/admin/images/feed_atom.png
activemq/webapps/admin/images/feed_rss.png
activemq/webapps/admin/images/left-box-bottom.png
activemq/webapps/admin/images/left-box-right.png
activemq/webapps/admin/images/left-box-top.png
activemq/webapps/admin/images/oval-arrow.png
activemq/webapps/admin/images/right-box-bottom.png
activemq/webapps/admin/images/right-box-left.png
activemq/webapps/admin/images/right-box-top.png
activemq/webapps/admin/images/small-bullet-gray.png
activemq/webapps/admin/images/small-bullet-red.png
activemq/webapps/admin/images/spacer.gif
activemq/webapps/admin/images/top-red-bar.png
activemq/webapps/admin/images/white-header-left.png
activemq/webapps/admin/images/white-header-right.png
activemq/webapps/admin/images/white-header-top.png
activemq/webapps/admin/index.jsp
activemq/webapps/admin/js/
activemq/webapps/admin/js/common.js
activemq/webapps/admin/js/css.js
activemq/webapps/admin/js/mochi/
activemq/webapps/admin/js/mochi/MochiKit.js
activemq/webapps/admin/js/mochi/__package__.js
activemq/webapps/admin/js/plotkit/
activemq/webapps/admin/js/plotkit/Base.js
activemq/webapps/admin/js/plotkit/Canvas.js
activemq/webapps/admin/js/plotkit/Layout.js
activemq/webapps/admin/js/plotkit/SVG.js
activemq/webapps/admin/js/plotkit/SweetCanvas.js
activemq/webapps/admin/js/plotkit/SweetSVG.js
activemq/webapps/admin/js/plotkit/dummy.svg
activemq/webapps/admin/js/plotkit/iecanvas.htc
activemq/webapps/admin/js/prettify.js
activemq/webapps/admin/js/standardista-table-sorting.js
activemq/webapps/admin/login.html
activemq/webapps/admin/message.jsp
activemq/webapps/admin/network.jsp
activemq/webapps/admin/queueConsumers.jsp
activemq/webapps/admin/queueGraph.jsp
activemq/webapps/admin/queueProducers.jsp
activemq/webapps/admin/queues.jsp
activemq/webapps/admin/scheduled.jsp
activemq/webapps/admin/send.jsp
activemq/webapps/admin/slave.jsp
activemq/webapps/admin/styles/
activemq/webapps/admin/styles/prettify.css
activemq/webapps/admin/styles/site.css
activemq/webapps/admin/styles/sorttable.css
activemq/webapps/admin/styles/type-settings.css
activemq/webapps/admin/subscribers.jsp
activemq/webapps/admin/test/
activemq/webapps/admin/test/dummy.jsp
activemq/webapps/admin/test/index.jsp
activemq/webapps/admin/test/systemProperties.jsp
activemq/webapps/admin/topicProducers.jsp
activemq/webapps/admin/topicSubscribers.jsp
activemq/webapps/admin/topics.jsp
activemq/webapps/admin/xml/
activemq/webapps/admin/xml/queues.jsp
activemq/webapps/admin/xml/subscribers.jsp
activemq/webapps/admin/xml/topics.jsp
activemq/webapps/api/
activemq/webapps/api/WEB-INF/
activemq/webapps/api/WEB-INF/classes/
activemq/webapps/api/WEB-INF/classes/jolokia-access.xml
activemq/webapps/api/WEB-INF/web.xml
activemq/webapps/favicon.ico
activemq/webapps/images/
activemq/webapps/images/activemq-logo.png
activemq/webapps/images/asf-logo.png
activemq/webapps/images/big-bullet.png
activemq/webapps/images/black-footer-bottom.png
activemq/webapps/images/black-footer-left.png
activemq/webapps/images/black-footer-right.png
activemq/webapps/images/bottom-red-bar.png
activemq/webapps/images/checker-bg.png
activemq/webapps/images/content-left.png
activemq/webapps/images/content-right.png
activemq/webapps/images/feed_atom.png
activemq/webapps/images/feed_rss.png
activemq/webapps/images/left-box-bottom.png
activemq/webapps/images/left-box-right.png
activemq/webapps/images/left-box-top.png
activemq/webapps/images/oval-arrow.png
activemq/webapps/images/right-box-bottom.png
activemq/webapps/images/right-box-left.png
activemq/webapps/images/right-box-top.png
activemq/webapps/images/small-bullet-gray.png
activemq/webapps/images/small-bullet-red.png
activemq/webapps/images/spacer.gif
activemq/webapps/images/top-red-bar.png
activemq/webapps/images/white-header-left.png
activemq/webapps/images/white-header-right.png
activemq/webapps/images/white-header-top.png
activemq/webapps/index.html
activemq/webapps/styles/
activemq/webapps/styles/prettify.css
activemq/webapps/styles/site.css
activemq/webapps/styles/sorttable.css
activemq/webapps/styles/type-settings.css
share/examples/activemq/
share/examples/activemq/activemq.conf
@mode 0640
@group _activemq
@sample ${SYSCONFDIR}/activemq.conf
@mode
@group
share/examples/activemq/conf/
@mode 0750
@owner _activemq
@group _activemq
@sample ${SYSCONFDIR}/activemq/
@mode
@owner
@group
share/examples/activemq/conf/activemq.xml
@sample ${SYSCONFDIR}/activemq/activemq.xml
share/examples/activemq/conf/broker-localhost.cert
@sample ${SYSCONFDIR}/activemq/broker-localhost.cert
share/examples/activemq/conf/broker.ks
@sample ${SYSCONFDIR}/activemq/broker.ks
share/examples/activemq/conf/broker.ts
@sample ${SYSCONFDIR}/activemq/broker.ts
share/examples/activemq/conf/client.ks
@sample ${SYSCONFDIR}/activemq/client.ks
share/examples/activemq/conf/client.ts
@sample ${SYSCONFDIR}/activemq/client.ts
share/examples/activemq/conf/credentials-enc.properties
@sample ${SYSCONFDIR}/activemq/credentials-enc.properties
share/examples/activemq/conf/credentials.properties
@sample ${SYSCONFDIR}/activemq/credentials.properties
share/examples/activemq/conf/groups.properties
@sample ${SYSCONFDIR}/activemq/groups.properties
share/examples/activemq/conf/java.security
@sample ${SYSCONFDIR}/activemq/java.security
share/examples/activemq/conf/jetty-realm.properties
@sample ${SYSCONFDIR}/activemq/jetty-realm.properties
share/examples/activemq/conf/jetty.xml
@sample ${SYSCONFDIR}/activemq/jetty.xml
share/examples/activemq/conf/jmx.access
@sample ${SYSCONFDIR}/activemq/jmx.access
share/examples/activemq/conf/jmx.password
@sample ${SYSCONFDIR}/activemq/jmx.password
share/examples/activemq/conf/log4j.properties
@sample ${SYSCONFDIR}/activemq/log4j.properties
share/examples/activemq/conf/logging.properties
@sample ${SYSCONFDIR}/activemq/logging.properties
share/examples/activemq/conf/login.config
@sample ${SYSCONFDIR}/activemq/login.config
share/examples/activemq/conf/users.properties
@sample ${SYSCONFDIR}/activemq/users.properties
@owner _activemq
@group _activemq
@sample /var/db/activemq/
@sample /var/db/activemq/data/
@sample /var/db/activemq/tmp/
@group
@owner
@rcscript ${RCDIR}/activemq

View File

@ -1,24 +0,0 @@
#!/bin/ksh
#
# $OpenBSD: activemq.rc,v 1.4 2018/01/11 19:27:04 rpe Exp $
daemon="${TRUEPREFIX}/activemq/bin/activemq"
daemon_user="_activemq"
. /etc/rc.d/rc.subr
rc_reload=NO
rc_start() {
${rcexec} "PATH=$PATH:$(dirname $(${LOCALBASE}/bin/javaPathHelper -c apache-activemq)) ${daemon} start"
}
rc_check() {
PATH=$PATH:$(dirname $(${LOCALBASE}/bin/javaPathHelper -c apache-activemq)) ${daemon} status
}
rc_stop() {
PATH=$PATH:$(dirname $(${LOCALBASE}/bin/javaPathHelper -c apache-activemq)) ${daemon} stop
}
rc_cmd $1