http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/client-side-failoverlistener/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/client-side-failoverlistener/pom.xml b/examples/jms/client-side-failoverlistener/pom.xml index 1264e48..37ffe90 100644 --- a/examples/jms/client-side-failoverlistener/pom.xml +++ b/examples/jms/client-side-failoverlistener/pom.xml @@ -36,7 +36,7 @@ <goal>start</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> <systemProperties> <property> <name>build.directory</name> @@ -57,7 +57,7 @@ <configuration> <jndiPort>1199</jndiPort> <jndiRmiPort>1198</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> <fork>true</fork> <systemProperties> <property> @@ -86,7 +86,7 @@ <systemProperties> <property> <name>exampleConfigDir</name> - <value>${basedir}/target/classes/hornetq</value> + <value>${basedir}/target/classes/activemq</value> </property> </systemProperties> </configuration> @@ -97,7 +97,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -106,7 +106,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> </configuration> </execution> </executions>
http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/client-side-failoverlistener/readme.html ---------------------------------------------------------------------- diff --git a/examples/jms/client-side-failoverlistener/readme.html b/examples/jms/client-side-failoverlistener/readme.html index c24b50e..6f8f073 100644 --- a/examples/jms/client-side-failoverlistener/readme.html +++ b/examples/jms/client-side-failoverlistener/readme.html @@ -16,7 +16,7 @@ <h2>Example step-by-step</h2> <p><em>To run the example, simply type <code>mvn verify</code> from this directory</em></p> <ol> - <li>First we need to get an initial context so we can look-up the JMS connection factory and destination objects from JNDI. This initial context will get its properties from <a href="src/main/resources/hornetq/server0/client-jndi.properties">client-jndi.properties</a></li> + <li>First we need to get an initial context so we can look-up the JMS connection factory and destination objects from JNDI. This initial context will get its properties from <a href="src/main/resources/activemq/server0/client-jndi.properties">client-jndi.properties</a></li> <pre class="prettyprint"> <code>InitialContext initialContext = getContext(0);</code> </pre> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/client-side-failoverlistener/src/main/resources/hornetq/server0/activemq-configuration.xml ---------------------------------------------------------------------- diff --git a/examples/jms/client-side-failoverlistener/src/main/resources/hornetq/server0/activemq-configuration.xml b/examples/jms/client-side-failoverlistener/src/main/resources/hornetq/server0/activemq-configuration.xml index 3a086ee..5cbdcfc 100644 --- a/examples/jms/client-side-failoverlistener/src/main/resources/hornetq/server0/activemq-configuration.xml +++ b/examples/jms/client-side-failoverlistener/src/main/resources/hornetq/server0/activemq-configuration.xml @@ -1,6 +1,6 @@ <configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="urn:activemq ../../../../../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd"> + xsi:schemaLocation="urn:activemq ../../../../../../../../activemq-server/src/main/resources/schema/activemq-configuration.xsd"> <bindings-directory>${build.directory}/server0/data/messaging/bindings</bindings-directory> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/client-side-failoverlistener/src/main/resources/hornetq/server1/activemq-configuration.xml ---------------------------------------------------------------------- diff --git a/examples/jms/client-side-failoverlistener/src/main/resources/hornetq/server1/activemq-configuration.xml b/examples/jms/client-side-failoverlistener/src/main/resources/hornetq/server1/activemq-configuration.xml index 8feacdd..2010768 100644 --- a/examples/jms/client-side-failoverlistener/src/main/resources/hornetq/server1/activemq-configuration.xml +++ b/examples/jms/client-side-failoverlistener/src/main/resources/hornetq/server1/activemq-configuration.xml @@ -1,6 +1,6 @@ <configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="urn:activemq ../../../../../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd"> + xsi:schemaLocation="urn:activemq ../../../../../../../../activemq-server/src/main/resources/schema/activemq-configuration.xsd"> <bindings-directory>${build.directory}/server0/data/messaging/bindings</bindings-directory> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/client-side-load-balancing/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/client-side-load-balancing/pom.xml b/examples/jms/client-side-load-balancing/pom.xml index bc09a2b..2e4f24a 100644 --- a/examples/jms/client-side-load-balancing/pom.xml +++ b/examples/jms/client-side-load-balancing/pom.xml @@ -36,7 +36,7 @@ <goal>start</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> <systemProperties> <property> <name>build.directory</name> @@ -57,7 +57,7 @@ <configuration> <jndiPort>1199</jndiPort> <jndiRmiPort>1198</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> <fork>true</fork> <systemProperties> <property> @@ -79,7 +79,7 @@ <configuration> <jndiPort>1299</jndiPort> <jndiRmiPort>1298</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server2</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server2</hornetqConfigurationDir> <fork>true</fork> <systemProperties> <property> @@ -107,7 +107,7 @@ <systemProperties> <property> <name>exampleConfigDir</name> - <value>${basedir}/target/classes/hornetq</value> + <value>${basedir}/target/classes/activemq</value> </property> </systemProperties> </configuration> @@ -118,7 +118,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -127,7 +127,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -136,7 +136,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server2</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server2</hornetqConfigurationDir> </configuration> </execution> </executions> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/client-side-load-balancing/readme.html ---------------------------------------------------------------------- diff --git a/examples/jms/client-side-load-balancing/readme.html b/examples/jms/client-side-load-balancing/readme.html index cc304ba..93390e2 100644 --- a/examples/jms/client-side-load-balancing/readme.html +++ b/examples/jms/client-side-load-balancing/readme.html @@ -19,7 +19,7 @@ to use UDP discovery to discover the list of servers over which to round-robin. This example will use UDP discovery to obtain the list.</p> <p>This example starts three servers which all broadcast their location using UDP discovery. The UDP broadcast configuration - can be seen in the <code>hornetq-configuration.xml</code> file.</p> + can be seen in the <code>activemq-configuration.xml</code> file.</p> <p>A JMS ConnectionFactory is deployed on each server specifying the discovery group that will be used by that connection factory.</p> <p>For more information on ActiveMQ load balancing, and clustering in general, please see the clustering http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/clustered-durable-subscription/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/clustered-durable-subscription/pom.xml b/examples/jms/clustered-durable-subscription/pom.xml index 963bc8d..5ff2e28 100644 --- a/examples/jms/clustered-durable-subscription/pom.xml +++ b/examples/jms/clustered-durable-subscription/pom.xml @@ -36,7 +36,7 @@ <goal>start</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> <systemProperties> <property> <name>build.directory</name> @@ -57,7 +57,7 @@ <configuration> <jndiPort>1199</jndiPort> <jndiRmiPort>1198</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> <fork>true</fork> <systemProperties> <property> @@ -85,7 +85,7 @@ <systemProperties> <property> <name>exampleConfigDir</name> - <value>${basedir}/target/classes/hornetq</value> + <value>${basedir}/target/classes/activemq</value> </property> </systemProperties> </configuration> @@ -96,7 +96,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -105,7 +105,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> </configuration> </execution> </executions> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/clustered-grouping/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/clustered-grouping/pom.xml b/examples/jms/clustered-grouping/pom.xml index bcb9612..0e55226 100644 --- a/examples/jms/clustered-grouping/pom.xml +++ b/examples/jms/clustered-grouping/pom.xml @@ -36,7 +36,7 @@ <goal>start</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> <systemProperties> <property> <name>build.directory</name> @@ -57,7 +57,7 @@ <configuration> <jndiPort>1199</jndiPort> <jndiRmiPort>1198</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> <fork>true</fork> <systemProperties> <property> @@ -79,7 +79,7 @@ <configuration> <jndiPort>1299</jndiPort> <jndiRmiPort>1298</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server2</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server2</hornetqConfigurationDir> <fork>true</fork> <systemProperties> <property> @@ -108,7 +108,7 @@ <systemProperties> <property> <name>exampleConfigDir</name> - <value>${basedir}/target/classes/hornetq</value> + <value>${basedir}/target/classes/activemq</value> </property> </systemProperties> </configuration> @@ -119,7 +119,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -128,7 +128,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -137,7 +137,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server2</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server2</hornetqConfigurationDir> </configuration> </execution> </executions> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/clustered-jgroups/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/clustered-jgroups/pom.xml b/examples/jms/clustered-jgroups/pom.xml index 252ba9d..1cdaf59 100644 --- a/examples/jms/clustered-jgroups/pom.xml +++ b/examples/jms/clustered-jgroups/pom.xml @@ -36,7 +36,7 @@ <goal>start</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> <systemProperties> <!-- this is to make sure the example will run fine on any box. you may tweak this to any property you like. More information on the JGroups docs --> @@ -55,7 +55,7 @@ <configuration> <jndiPort>1199</jndiPort> <jndiRmiPort>1198</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> <fork>true</fork> <systemProperties> <!-- this is to make sure the example will run fine on any box. @@ -86,7 +86,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -95,7 +95,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> </configuration> </execution> </executions> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/clustered-queue/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/clustered-queue/pom.xml b/examples/jms/clustered-queue/pom.xml index 842a688..55147fa 100644 --- a/examples/jms/clustered-queue/pom.xml +++ b/examples/jms/clustered-queue/pom.xml @@ -36,7 +36,7 @@ <goal>start</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> <systemProperties> <property> <name>udp-address</name> @@ -53,7 +53,7 @@ <configuration> <jndiPort>1199</jndiPort> <jndiRmiPort>1198</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> <fork>true</fork> <systemProperties> <property> @@ -82,7 +82,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -91,7 +91,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> </configuration> </execution> </executions> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/clustered-standalone/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/clustered-standalone/pom.xml b/examples/jms/clustered-standalone/pom.xml index 27787c5..cb5e4b2 100644 --- a/examples/jms/clustered-standalone/pom.xml +++ b/examples/jms/clustered-standalone/pom.xml @@ -36,7 +36,7 @@ <goal>start</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> <systemProperties> <property> <name>udp-address</name> @@ -53,7 +53,7 @@ <configuration> <jndiPort>1199</jndiPort> <jndiRmiPort>1198</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> <fork>true</fork> <systemProperties> <property> @@ -71,7 +71,7 @@ <configuration> <jndiPort>1299</jndiPort> <jndiRmiPort>1298</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server2</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server2</hornetqConfigurationDir> <fork>true</fork> <systemProperties> <property> @@ -96,7 +96,7 @@ <systemProperties> <property> <name>exampleConfigDir</name> - <value>${basedir}/target/classes/hornetq</value> + <value>${basedir}/target/classes/activemq</value> </property> </systemProperties> </configuration> @@ -107,7 +107,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -116,7 +116,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -125,7 +125,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server2</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server2</hornetqConfigurationDir> </configuration> </execution> </executions> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/clustered-static-discovery/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/clustered-static-discovery/pom.xml b/examples/jms/clustered-static-discovery/pom.xml index cc601b5..8ce3ac9 100644 --- a/examples/jms/clustered-static-discovery/pom.xml +++ b/examples/jms/clustered-static-discovery/pom.xml @@ -36,7 +36,7 @@ <goal>start</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -47,7 +47,7 @@ <configuration> <jndiPort>1199</jndiPort> <jndiRmiPort>1198</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> <fork>true</fork> </configuration> </execution> @@ -59,7 +59,7 @@ <configuration> <jndiPort>1299</jndiPort> <jndiRmiPort>1298</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server2</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server2</hornetqConfigurationDir> <fork>true</fork> </configuration> </execution> @@ -71,7 +71,7 @@ <configuration> <jndiPort>1399</jndiPort> <jndiRmiPort>1398</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server3</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server3</hornetqConfigurationDir> <fork>true</fork> </configuration> </execution> @@ -91,7 +91,7 @@ <systemProperties> <property> <name>exampleConfigDir</name> - <value>${basedir}/target/classes/hornetq</value> + <value>${basedir}/target/classes/activemq</value> </property> </systemProperties> </configuration> @@ -102,7 +102,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -111,7 +111,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -120,7 +120,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server2</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server2</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -129,7 +129,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server3</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server3</hornetqConfigurationDir> </configuration> </execution> </executions> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/clustered-static-oneway/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/clustered-static-oneway/pom.xml b/examples/jms/clustered-static-oneway/pom.xml index fc6a62d..652a01f 100644 --- a/examples/jms/clustered-static-oneway/pom.xml +++ b/examples/jms/clustered-static-oneway/pom.xml @@ -36,7 +36,7 @@ <goal>start</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -47,7 +47,7 @@ <configuration> <jndiPort>1199</jndiPort> <jndiRmiPort>1198</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> <fork>true</fork> </configuration> </execution> @@ -59,7 +59,7 @@ <configuration> <jndiPort>1299</jndiPort> <jndiRmiPort>1298</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server2</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server2</hornetqConfigurationDir> <fork>true</fork> </configuration> </execution> @@ -78,7 +78,7 @@ <systemProperties> <property> <name>exampleConfigDir</name> - <value>${basedir}/target/classes/hornetq</value> + <value>${basedir}/target/classes/activemq</value> </property> </systemProperties> </configuration> @@ -89,7 +89,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -98,7 +98,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -107,7 +107,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server2</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server2</hornetqConfigurationDir> </configuration> </execution> </executions> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/clustered-topic/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/clustered-topic/pom.xml b/examples/jms/clustered-topic/pom.xml index 8e9b25c..9c68f4b 100644 --- a/examples/jms/clustered-topic/pom.xml +++ b/examples/jms/clustered-topic/pom.xml @@ -36,7 +36,7 @@ <goal>start</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> <systemProperties> <property> <name>build.directory</name> @@ -57,7 +57,7 @@ <configuration> <jndiPort>1199</jndiPort> <jndiRmiPort>1198</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> <fork>true</fork> <systemProperties> <property> @@ -85,7 +85,7 @@ <systemProperties> <property> <name>exampleConfigDir</name> - <value>${basedir}/target/classes/hornetq</value> + <value>${basedir}/target/classes/activemq</value> </property> </systemProperties> </configuration> @@ -96,7 +96,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -105,7 +105,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> </configuration> </execution> </executions> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/colocated-failover-scale-down/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/colocated-failover-scale-down/pom.xml b/examples/jms/colocated-failover-scale-down/pom.xml index 0e94e28..fccdaed 100644 --- a/examples/jms/colocated-failover-scale-down/pom.xml +++ b/examples/jms/colocated-failover-scale-down/pom.xml @@ -36,7 +36,7 @@ <goal>start</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> <systemProperties> <property> <name>udp-address</name> @@ -53,7 +53,7 @@ <configuration> <jndiPort>1199</jndiPort> <jndiRmiPort>1198</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> <fork>true</fork> <systemProperties> <property> @@ -77,7 +77,7 @@ <systemProperties> <property> <name>exampleConfigDir</name> - <value>${basedir}/target/classes/hornetq</value> + <value>${basedir}/target/classes/activemq</value> </property> </systemProperties> </configuration> @@ -88,7 +88,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -97,7 +97,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> </configuration> </execution> </executions> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/colocated-failover/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/colocated-failover/pom.xml b/examples/jms/colocated-failover/pom.xml index a8ccf23..4d63b88 100644 --- a/examples/jms/colocated-failover/pom.xml +++ b/examples/jms/colocated-failover/pom.xml @@ -36,7 +36,7 @@ <goal>start</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> <systemProperties> <property> <name>udp-address</name> @@ -53,7 +53,7 @@ <configuration> <jndiPort>1199</jndiPort> <jndiRmiPort>1198</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> <fork>true</fork> <systemProperties> <property> @@ -77,7 +77,7 @@ <systemProperties> <property> <name>exampleConfigDir</name> - <value>${basedir}/target/classes/hornetq</value> + <value>${basedir}/target/classes/activemq</value> </property> </systemProperties> </configuration> @@ -88,7 +88,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -97,7 +97,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> </configuration> </execution> </executions> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/consumer-rate-limit/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/consumer-rate-limit/pom.xml b/examples/jms/consumer-rate-limit/pom.xml index 5b836ce..aa15902 100644 --- a/examples/jms/consumer-rate-limit/pom.xml +++ b/examples/jms/consumer-rate-limit/pom.xml @@ -107,7 +107,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/consumer-rate-limit/readme.html ---------------------------------------------------------------------- diff --git a/examples/jms/consumer-rate-limit/readme.html b/examples/jms/consumer-rate-limit/readme.html index e19a098..1f6cd30 100644 --- a/examples/jms/consumer-rate-limit/readme.html +++ b/examples/jms/consumer-rate-limit/readme.html @@ -9,11 +9,11 @@ <h1>JMS Message Consumer Rate Limiting</h1> <p>With ActiveMQ you can specify a maximum consume rate at which a JMS MessageConsumer will consume messages. - This can be specified when creating or deploying the connection factory. See <code>hornetq-jms.xml</code></p> + This can be specified when creating or deploying the connection factory. See <code>activemq-jms.xml</code></p> <p>If this value is specified then ActiveMQ will ensure that messages are never consumed at a rate higher than the specified rate. This is a form of consumer <i>throttling</i>.</p> <h2>Example step-by-step</h2> - <p>In this example we specify a <code>consumer-max-rate</code> of <code>10</code> messages per second in the <code>hornetq-jms.xml</code> + <p>In this example we specify a <code>consumer-max-rate</code> of <code>10</code> messages per second in the <code>activemq-jms.xml</code> file when deploying the connection factory:</p> <pre class="prettyprint"> <code> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/dead-letter/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/dead-letter/pom.xml b/examples/jms/dead-letter/pom.xml index 0a2c07b..ad0315b 100644 --- a/examples/jms/dead-letter/pom.xml +++ b/examples/jms/dead-letter/pom.xml @@ -107,7 +107,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/dead-letter/readme.html ---------------------------------------------------------------------- diff --git a/examples/jms/dead-letter/readme.html b/examples/jms/dead-letter/readme.html index c0f9872..6927662 100644 --- a/examples/jms/dead-letter/readme.html +++ b/examples/jms/dead-letter/readme.html @@ -21,7 +21,7 @@ We will then consume this dead letter message. </p> <h2>Example setup</h2> - <p><em>Dead letter addresses</em> and <em>maximum delivery attempts</em> are defined in the configuration file <a href="src/main/resources/hornetq/server0/hornetq-configuration.xml">hornetq-configuration.xml</a>:</p> + <p><em>Dead letter addresses</em> and <em>maximum delivery attempts</em> are defined in the configuration file <a href="src/main/resources/activemq/server0/activemq-configuration.xml">activemq-configuration.xml</a>:</p> <pre class="prettyprint"> <code><address-setting match="jms.queue.exampleQueue"> <dead-letter-address>jms.queue.deadLetterQueue</dead-letter-address> @@ -36,7 +36,7 @@ <p>The maximum attempts of delivery is <code>3</code>. Once this figure is reached, a message is considered a dead letter message and is moved to the <code>deadLetterQueue</code>. <p>Since we want to consume messages from this deadLetterQueue, we also need to add a JNDI binding to perform a lookup. - This is configured in <a href="src/main/resources/hornetq/server0/hornetq-jms.xml">hornetq-jms.xml</a></p> + This is configured in <a href="src/main/resources/activemq/server0/activemq-jms.xml">activemq-jms.xml</a></p> <pre class="prettyprint"> <code><queue name="deadLetterQueue"> <entry name="/queue/deadLetterQueue"/> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/delayed-redelivery/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/delayed-redelivery/pom.xml b/examples/jms/delayed-redelivery/pom.xml index 81c286b..17d18c0 100644 --- a/examples/jms/delayed-redelivery/pom.xml +++ b/examples/jms/delayed-redelivery/pom.xml @@ -99,7 +99,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> <systemProperties> <property> <name>build.directory</name> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/delayed-redelivery/readme.html ---------------------------------------------------------------------- diff --git a/examples/jms/delayed-redelivery/readme.html b/examples/jms/delayed-redelivery/readme.html index d2bd1b7..8b980a4 100644 --- a/examples/jms/delayed-redelivery/readme.html +++ b/examples/jms/delayed-redelivery/readme.html @@ -20,7 +20,7 @@ matching on the address settings.</p> <h2>Example setup</h2> - <p>Redelivery delay is specified in the configuration file <a href="src/main/resources/hornetq/server0/hornetq-configuration.xml">hornetq-configuration.xml</a>:</p> + <p>Redelivery delay is specified in the configuration file <a href="src/main/resources/activemq/server0/activemq-configuration.xml">activemq-configuration.xml</a>:</p> <p>In this example we set the redelivery delay to 5 seconds for the specific example queue. We could set redelivery delay on on multiple queues by specifying a wild-card in the match, e.g. <code>match="jms.#"</code> would apply the settings to all JMS queues and topics.</p> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/divert/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/divert/pom.xml b/examples/jms/divert/pom.xml index f8f2822..011e7c9 100644 --- a/examples/jms/divert/pom.xml +++ b/examples/jms/divert/pom.xml @@ -41,7 +41,7 @@ <goal>start</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -52,7 +52,7 @@ <configuration> <jndiPort>1199</jndiPort> <jndiRmiPort>1198</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> <fork>true</fork> </configuration> </execution> @@ -70,7 +70,7 @@ <systemProperties> <property> <name>exampleConfigDir</name> - <value>${basedir}/target/classes/hornetq</value> + <value>${basedir}/target/classes/activemq</value> </property> </systemProperties> </configuration> @@ -81,7 +81,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -90,7 +90,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> </configuration> </execution> </executions> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/divert/readme.html ---------------------------------------------------------------------- diff --git a/examples/jms/divert/readme.html b/examples/jms/divert/readme.html index a60001f..6abce2d 100644 --- a/examples/jms/divert/readme.html +++ b/examples/jms/divert/readme.html @@ -35,7 +35,7 @@ <p>We will create a topic, <code>spyTopic</code> on the London server, and there will be two subscribers both in London.</p> <p>We will create a <i>non-exclusive</i> divert on the London server which will siphon off a copy of each order received to the topic <code>spyTopic</code>.</p> - <p>Here's the xml config for that divert, from <code>hornetq-configuration.xml</code></p> + <p>Here's the xml config for that divert, from <code>activemq-configuration.xml</code></p> <pre class="prettyprint"> <code> <divert name="order-divert"> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/durable-subscription/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/durable-subscription/pom.xml b/examples/jms/durable-subscription/pom.xml index 2bd45be..61c6f59 100644 --- a/examples/jms/durable-subscription/pom.xml +++ b/examples/jms/durable-subscription/pom.xml @@ -107,7 +107,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/embedded-simple/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/embedded-simple/pom.xml b/examples/jms/embedded-simple/pom.xml index 5347ee1..251e5a9 100644 --- a/examples/jms/embedded-simple/pom.xml +++ b/examples/jms/embedded-simple/pom.xml @@ -54,7 +54,7 @@ <systemProperties> <property> <name>exampleConfigDir</name> - <value>${basedir}/target/classes/hornetq</value> + <value>${basedir}/target/classes/activemq</value> </property> </systemProperties> </configuration> @@ -104,7 +104,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/embedded-simple/readme.html ---------------------------------------------------------------------- diff --git a/examples/jms/embedded-simple/readme.html b/examples/jms/embedded-simple/readme.html index 9963775..51c99ab 100644 --- a/examples/jms/embedded-simple/readme.html +++ b/examples/jms/embedded-simple/readme.html @@ -15,7 +15,7 @@ <ol> <li>Create ActiveMQ core configuration files and make sure they are within your classpath. By default, ActiveMQ - expects the classnames to be "hornetq-configuration.xml", "hornetq-jms.xml", and "hornetq-users.xml".</li> + expects the classnames to be "activemq-configuration.xml", "activemq-jms.xml", and "activemq-users.xml".</li> <li>Create and start ActiveMQ JMS server</li> <pre class="prettyprint"> <code>EmbeddedJMS jmsServer = new EmbeddedJMS(); http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/embedded/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/embedded/pom.xml b/examples/jms/embedded/pom.xml index d428079..98d854c 100644 --- a/examples/jms/embedded/pom.xml +++ b/examples/jms/embedded/pom.xml @@ -54,7 +54,7 @@ <systemProperties> <property> <name>exampleConfigDir</name> - <value>${basedir}/target/classes/hornetq</value> + <value>${basedir}/target/classes/activemq</value> </property> <property> <name>build.directory</name> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/expiry/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/expiry/pom.xml b/examples/jms/expiry/pom.xml index a89c3b7..ac0563c 100644 --- a/examples/jms/expiry/pom.xml +++ b/examples/jms/expiry/pom.xml @@ -107,7 +107,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/expiry/readme.html ---------------------------------------------------------------------- diff --git a/examples/jms/expiry/readme.html b/examples/jms/expiry/readme.html index 9ed21ec..968a86b 100644 --- a/examples/jms/expiry/readme.html +++ b/examples/jms/expiry/readme.html @@ -19,7 +19,7 @@ We will instead consume it from an <em>expiry queue</em> where it was moved when it expired. </p> <h2>Example setup</h2> - <p>Expiry destinations are defined in the configuration file <a href="server0/hornetq-configuration.xml">hornetq-configuration.xml</a>:</p> + <p>Expiry destinations are defined in the configuration file <a href="server0/activemq-configuration.xml">activemq-configuration.xml</a>:</p> <pre class="prettyprint"> <code><address-setting match="jms.queue.exampleQueue"> <expiry-address>jms.queue.expiryQueue</expiry-address> @@ -31,7 +31,7 @@ or a <code>Topic</code> by prefixing with <code>jms.topic.</code>.<br /> In this example, we will use a <code>Queue</code> to hold the expired messages.</p> <p>Since we want to consume messages from this expiryQueue, we also need to add a JNDI binding to perform a lookup. - This is configured in <a href="server0/hornetq-jms.xml">hornetq-jms.xml</a></p> + This is configured in <a href="server0/activemq-jms.xml">activemq-jms.xml</a></p> <pre class="prettyprint"> <code><queue name="expiryQueue"> <entry name="/queue/expiryQueue"/> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/ha-policy-autobackup/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/ha-policy-autobackup/pom.xml b/examples/jms/ha-policy-autobackup/pom.xml index 3d3463b..2b7fe80 100644 --- a/examples/jms/ha-policy-autobackup/pom.xml +++ b/examples/jms/ha-policy-autobackup/pom.xml @@ -36,7 +36,7 @@ <goal>start</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> <systemProperties> <property> <name>udp-address</name> @@ -53,7 +53,7 @@ <configuration> <jndiPort>1199</jndiPort> <jndiRmiPort>1198</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> <fork>true</fork> <systemProperties> <property> @@ -77,7 +77,7 @@ <systemProperties> <property> <name>exampleConfigDir</name> - <value>${basedir}/target/classes/hornetq</value> + <value>${basedir}/target/classes/activemq</value> </property> </systemProperties> </configuration> @@ -88,7 +88,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -97,7 +97,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> </configuration> </execution> </executions> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/http-transport/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/http-transport/pom.xml b/examples/jms/http-transport/pom.xml index 6c8c30e..f136dbb 100644 --- a/examples/jms/http-transport/pom.xml +++ b/examples/jms/http-transport/pom.xml @@ -107,7 +107,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> <systemProperties> <property> <name>build.directory</name> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/http-transport/readme.html ---------------------------------------------------------------------- diff --git a/examples/jms/http-transport/readme.html b/examples/jms/http-transport/readme.html index d88570c..c86f967 100644 --- a/examples/jms/http-transport/readme.html +++ b/examples/jms/http-transport/readme.html @@ -13,22 +13,22 @@ <p>ActiveMQ supports a variety of network protocols to be its underlying transport without any specific code change.</p> <p>This example is taken from the queue example without any code change. By changing the configuration file, one can get ActiveMQ working with HTTP transport.</p> - <p>All you need to do is open the server0/hornetq-configuration.xml and enable HTTP like the following</p> + <p>All you need to do is open the server0/activemq-configuration.xml and enable HTTP like the following</p> <pre class="prettyprint"> <code> <connector name="netty-connector"> <factory-class>org.apache.activemq.core.remoting.impl.netty.NettyConnectorFactory</factory-class> - <param key="hornetq.remoting.netty.http-enabled" value="true" type="Boolean"/> - <param key="hornetq.remoting.netty.port" value="8080" type="Integer"/> + <param key="activemq.remoting.netty.http-enabled" value="true" type="Boolean"/> + <param key="activemq.remoting.netty.port" value="8080" type="Integer"/> </connector> <!-- Acceptors --> <acceptor name="netty-acceptor"> <factory-class>org.apache.activemq.core.remoting.impl.netty.NettyAcceptorFactory</factory-class> - <param key="hornetq.remoting.netty.port" value="8080" type="Integer"/> + <param key="activemq.remoting.netty.port" value="8080" type="Integer"/> </acceptor> </code> </pre> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/instantiate-connection-factory/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/instantiate-connection-factory/pom.xml b/examples/jms/instantiate-connection-factory/pom.xml index 8bf1713..a5fce8d 100644 --- a/examples/jms/instantiate-connection-factory/pom.xml +++ b/examples/jms/instantiate-connection-factory/pom.xml @@ -117,7 +117,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/interceptor/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/interceptor/pom.xml b/examples/jms/interceptor/pom.xml index d33e6f2..9e7b439 100644 --- a/examples/jms/interceptor/pom.xml +++ b/examples/jms/interceptor/pom.xml @@ -112,7 +112,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/interceptor/readme.html ---------------------------------------------------------------------- diff --git a/examples/jms/interceptor/readme.html b/examples/jms/interceptor/readme.html index 523ef24..57f9cea 100644 --- a/examples/jms/interceptor/readme.html +++ b/examples/jms/interceptor/readme.html @@ -20,7 +20,7 @@ } </code> </pre> - <p>Once you have your own interceptor class, add it to the hornetq-configuration.xml, as follows:</p> + <p>Once you have your own interceptor class, add it to the activemq-configuration.xml, as follows:</p> <pre class="prettyprint"> <code> <configuration> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/jaas/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/jaas/pom.xml b/examples/jms/jaas/pom.xml index 9a3a261..f3bcb55 100644 --- a/examples/jms/jaas/pom.xml +++ b/examples/jms/jaas/pom.xml @@ -130,7 +130,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/jaas/readme.html ---------------------------------------------------------------------- diff --git a/examples/jms/jaas/readme.html b/examples/jms/jaas/readme.html index 4f9cc29..59c2674 100644 --- a/examples/jms/jaas/readme.html +++ b/examples/jms/jaas/readme.html @@ -12,8 +12,8 @@ <p>ActiveMQ can leverage JAAS to delegate user authentication and authorization to existing security infrastructure.</p> <p> - The example will show how to configure ActiveMQ with JAAS in <a href="server0/hornetq-beans.xml">hornetq-beans.xml</a> - (You would use <literal>hornetq-jboss-beans.xml</literal> if you are running inside JBoss Application + The example will show how to configure ActiveMQ with JAAS in <a href="server0/activemq-beans.xml">activemq-beans.xml</a> + (You would use <literal>activemq-jboss-beans.xml</literal> if you are running inside JBoss Application Server). It will use a simple <code>LoginModule</code> without any user interaction. The example will create a connection and authenticate the user with this JAAS LoginModule, send a message @@ -21,10 +21,10 @@ of the application code) </p> <p>Note than the example actually sets the security manager via the maven pom.xml, however for we will discuss as if - the hornetq-beans.xml is being configured, the example beans file can be found under the <code>src/main/resources</code> + the activemq-beans.xml is being configured, the example beans file can be found under the <code>src/main/resources</code> directory</p> <h2>Example setup</h2> - <p>ActiveMQ can use a JAAS security manager by specifying it in <a href="server0/hornetq-beans.xml">hornetq-beans.xml</a>:</p> + <p>ActiveMQ can use a JAAS security manager by specifying it in <a href="server0/activemq-beans.xml">activemq-beans.xml</a>:</p> <pre class="prettyprint"> <!-- The security manager using JAAS --> <bean name="ActiveMQSecurityManager" class="org.apache.activemq.integration.jboss.security.JAASSecurityManager"> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/jms-auto-closeable/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/jms-auto-closeable/pom.xml b/examples/jms/jms-auto-closeable/pom.xml index bf93eac..8468aa4 100644 --- a/examples/jms/jms-auto-closeable/pom.xml +++ b/examples/jms/jms-auto-closeable/pom.xml @@ -107,7 +107,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/jms-bridge/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/jms-bridge/pom.xml b/examples/jms/jms-bridge/pom.xml index 96f9ea3..fec058c 100644 --- a/examples/jms/jms-bridge/pom.xml +++ b/examples/jms/jms-bridge/pom.xml @@ -54,7 +54,7 @@ <goal>start</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -65,7 +65,7 @@ <configuration> <jndiPort>1199</jndiPort> <jndiRmiPort>1198</jndiRmiPort> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> <fork>true</fork> </configuration> </execution> @@ -83,7 +83,7 @@ <systemProperties> <property> <name>exampleConfigDir</name> - <value>${basedir}/target/classes/hornetq</value> + <value>${basedir}/target/classes/activemq</value> </property> </systemProperties> </configuration> @@ -94,7 +94,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </execution> <execution> @@ -103,7 +103,7 @@ <goal>stop</goal> </goals> <configuration> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server1</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server1</hornetqConfigurationDir> </configuration> </execution> </executions> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/jms-bridge/readme.html ---------------------------------------------------------------------- diff --git a/examples/jms/jms-bridge/readme.html b/examples/jms/jms-bridge/readme.html index 13bfbbe..6a5959b 100644 --- a/examples/jms/jms-bridge/readme.html +++ b/examples/jms/jms-bridge/readme.html @@ -27,7 +27,7 @@ <h3>JMS Bridge Configuration</h3> <p>The JMS Bridge is a <abbr title="Plain Old Java Object">POJO</abbr> that we configure with both source and target JNDI configurations. In the actual example we are programatically creating the Bridge, however the following section - describes how you would do this if you wanted to deploy with an actual ActiveMQ server via the hornetq-beans.xml. + describes how you would do this if you wanted to deploy with an actual ActiveMQ server via the activemq-beans.xml. <h4>Configuring the Bridge with the JBoss Microcontainer</h4> <p> @@ -35,7 +35,7 @@ so that it looks up its source and target JMS resources. The JMS Bridge is defined a bean and setup by JBoss Microntainer in the same VM than Server #1, the target server.</p> - </p>The JMS Bridge sample configuration can be found in <code>resources/hornetq-beans.xml</code>, firstly we define the + </p>The JMS Bridge sample configuration can be found in <code>resources/activemq-beans.xml</code>, firstly we define the Bridge itself:</p> <pre class="prettyprint"> <!-- The JMS Bridge --> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/jms-completion-listener/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/jms-completion-listener/pom.xml b/examples/jms/jms-completion-listener/pom.xml index 3298470..302d535 100644 --- a/examples/jms/jms-completion-listener/pom.xml +++ b/examples/jms/jms-completion-listener/pom.xml @@ -107,7 +107,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/jms-context/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/jms-context/pom.xml b/examples/jms/jms-context/pom.xml index 41dd390..e2737e5 100644 --- a/examples/jms/jms-context/pom.xml +++ b/examples/jms/jms-context/pom.xml @@ -107,7 +107,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/jms-shared-consumer/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/jms-shared-consumer/pom.xml b/examples/jms/jms-shared-consumer/pom.xml index 39d9779..7c2bd38 100644 --- a/examples/jms/jms-shared-consumer/pom.xml +++ b/examples/jms/jms-shared-consumer/pom.xml @@ -107,7 +107,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/jmx/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/jmx/pom.xml b/examples/jms/jmx/pom.xml index 74354e4..ede344e 100644 --- a/examples/jms/jmx/pom.xml +++ b/examples/jms/jmx/pom.xml @@ -135,7 +135,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/large-message/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/large-message/pom.xml b/examples/jms/large-message/pom.xml index 4c2eefa..b1db82f 100644 --- a/examples/jms/large-message/pom.xml +++ b/examples/jms/large-message/pom.xml @@ -57,7 +57,7 @@ <systemProperties> <property> <name>exampleConfigDir</name> - <value>${basedir}/target/classes/hornetq</value> + <value>${basedir}/target/classes/activemq</value> </property> </systemProperties> </configuration> @@ -113,7 +113,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/large-message/readme.html ---------------------------------------------------------------------- diff --git a/examples/jms/large-message/readme.html b/examples/jms/large-message/readme.html index 6029e76..7b5b8c2 100644 --- a/examples/jms/large-message/readme.html +++ b/examples/jms/large-message/readme.html @@ -38,7 +38,7 @@ <code>Queue queue = (Queue)initialContext.lookup("/queue/exampleQueue");</code> </pre> - <li>Perform a lookup on the Connection Factory. This ConnectionFactory has a special attribute set on it. hornetq-jms.xml) + <li>Perform a lookup on the Connection Factory. This ConnectionFactory has a special attribute set on it. activemq-jms.xml) Messages with more than 10K are considered large.</li> <pre class="prettyprint"> <code>ConnectionFactory cf = (ConnectionFactory)initialContext.lookup("/ConnectionFactory");</code> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/last-value-queue/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/last-value-queue/pom.xml b/examples/jms/last-value-queue/pom.xml index 6a6297b..b138e82 100644 --- a/examples/jms/last-value-queue/pom.xml +++ b/examples/jms/last-value-queue/pom.xml @@ -107,7 +107,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/last-value-queue/readme.html ---------------------------------------------------------------------- diff --git a/examples/jms/last-value-queue/readme.html b/examples/jms/last-value-queue/readme.html index d226400..6c91bd5 100644 --- a/examples/jms/last-value-queue/readme.html +++ b/examples/jms/last-value-queue/readme.html @@ -18,7 +18,7 @@ We will then consume from the queue the <em>last</em> message.</p> <h2>Example setup</h2> - <p>Last-Value queues are defined in the configuration file <a href="server0/hornetq-configuration.xml">hornetq-configuration.xml</a>:</p> + <p>Last-Value queues are defined in the configuration file <a href="server0/activemq-configuration.xml">activemq-configuration.xml</a>:</p> <pre class="prettyprint"> <code><address-setting match="jms.queue.lastValueQueue"> <last-value-queue>true</last-value-queue> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/management-notifications/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/management-notifications/pom.xml b/examples/jms/management-notifications/pom.xml index 5630586..605b4eb 100644 --- a/examples/jms/management-notifications/pom.xml +++ b/examples/jms/management-notifications/pom.xml @@ -107,7 +107,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/management-notifications/readme.html ---------------------------------------------------------------------- diff --git a/examples/jms/management-notifications/readme.html b/examples/jms/management-notifications/readme.html index 13114f8..bd26870 100644 --- a/examples/jms/management-notifications/readme.html +++ b/examples/jms/management-notifications/readme.html @@ -18,20 +18,20 @@ <h2>Example configuration</h2> <p>ActiveMQ can configured to send JMS messages when management notifications are emitted on the server.</p> - <p>By default, the management name is called <code>hornetq.notifications</code> but this can be configured in <a href="server0/hornetq-configuration.xml">hornetq-configuration.xml</a>. + <p>By default, the management name is called <code>activemq.notifications</code> but this can be configured in <a href="server0/activemq-configuration.xml">activemq-configuration.xml</a>. For this example, we will set it to <code>jms.topic.notificationsTopic</code> to be able to receive notifications from a JMS Topic.</p> <pre class="prettyprint"> <code><management-notification-address>jms.topic.notificationsTopic</management-notification-address></code> </pre> - <p>Since we want to lookup the notifications topic using JNDI, we also declare it in <a href="server0/hornetq-jms.xml">hornetq-jms.xml</a> + <p>Since we want to lookup the notifications topic using JNDI, we also declare it in <a href="server0/activemq-jms.xml">activemq-jms.xml</a> <pre class="prettyprint"> <code><topic name="notificationsTopic"> <entry name="/topic/notificationsTopic"/> </topic></code> </pre> <p>The notification queue requires permission to create/delete temporary queues and consume messages. - This is also configured in <a href="server0/hornetq-configuration.xml">hornetq-configuration.xml</a></p> + This is also configured in <a href="server0/activemq-configuration.xml">activemq-configuration.xml</a></p> <pre class="prettyprint"> <code><!--security for notification topic--> <security-setting match="jms.topic.notificationsTopic"> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/management-notifications/src/main/resources/hornetq/server0/activemq-users.xml ---------------------------------------------------------------------- diff --git a/examples/jms/management-notifications/src/main/resources/hornetq/server0/activemq-users.xml b/examples/jms/management-notifications/src/main/resources/hornetq/server0/activemq-users.xml index 7950ec3..f7f5375 100644 --- a/examples/jms/management-notifications/src/main/resources/hornetq/server0/activemq-users.xml +++ b/examples/jms/management-notifications/src/main/resources/hornetq/server0/activemq-users.xml @@ -1,5 +1,5 @@ <configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="urn:activemq ../schema/hornetq-security.xsd"> + xsi:schemaLocation="urn:activemq ../schema/activemq-security.xsd"> <!-- the default user. this is used where username is null--> <defaultuser name="guest" password="guest"> <role name="guest"/> http://git-wip-us.apache.org/repos/asf/activemq-6/blob/89a84c6a/examples/jms/management/pom.xml ---------------------------------------------------------------------- diff --git a/examples/jms/management/pom.xml b/examples/jms/management/pom.xml index d125672..41192c6 100644 --- a/examples/jms/management/pom.xml +++ b/examples/jms/management/pom.xml @@ -107,7 +107,7 @@ </dependencies> <configuration> <waitOnStart>false</waitOnStart> - <hornetqConfigurationDir>${basedir}/target/classes/hornetq/server0</hornetqConfigurationDir> + <hornetqConfigurationDir>${basedir}/target/classes/activemq/server0</hornetqConfigurationDir> </configuration> </plugin> </plugins>
