This closes #212 on doc changes for Artemis

This commit is contained in:
Clebert Suconic 2015-04-24 10:23:07 -04:00
commit 63dcb27d4d
146 changed files with 163 additions and 158 deletions

View File

@ -1,4 +1,4 @@
# ActiveMQ6
# ActiveMQ Artemis
This file describes some minimum 'stuff one needs to know' to get
started coding in this project.
@ -132,10 +132,10 @@ can be installed from [Eclipse Kepler release repository].
### Importing the Project
The following steps show how to import ActiveMQ6 source into IntelliJ IDEA and setup the correct maven profile to allow
The following steps show how to import ActiveMQ Artemis source into IntelliJ IDEA and setup the correct maven profile to allow
running of JUnit tests from within the IDE. (Steps are based on version: 13.1.4)
* File --> Import Project --> Select the root directory of the ActiveMQ6 source folder. --> Click OK
* File --> Import Project --> Select the root directory of the ActiveMQ Artemis source folder. --> Click OK
This should open the import project wizard. From here:
@ -172,7 +172,7 @@ blue arrow.
### Annotation Pre-Processing
ActiveMQ6 uses [JBoss Logging] and that requires source code generation from Java
ActiveMQ Artemis uses [JBoss Logging] and that requires source code generation from Java
annotations. In order for it to 'just work' in Eclipse you need to install the
_Maven Integration for Eclipse JDT Annotation Processor Toolkit_ [m2e-apt]. See
this [JBoss blog post] for details.
@ -203,7 +203,7 @@ http://dev.eclipse.org/mhonarc/lists/m2e-users/msg02725.html
### Use _Project Working Sets_
Importing all ActiveMQ6 subprojects will create _too many_ projects in Eclipse,
Importing all ActiveMQ Artemis subprojects will create _too many_ projects in Eclipse,
cluttering your _Package Explorer_ and _Project Explorer_ views. One way to address
that is to use [Eclipse's Working Sets] feature. A good introduction to it can be
found at a [Dzone article on Eclipse Working Sets].
@ -232,13 +232,13 @@ Do not use the [maven-eclipse-plugin] to copy the files as it conflicts with [m2
### Repositories
The code repository for ActiveMQ6 is hosted by Apache org and lives here: https://git-wip-us.apache.org/repos/asf/activemq-6.git.
The code repository for ActiveMQ Artemis is hosted by Apache org and lives here: https://git-wip-us.apache.org/repos/asf/activemq-6.git.
We also host a mirror of the ActiveMQ repository on GitHub: https://github.com/apache/activemq-6. We use this mirror for all code submissions and reviews. To submit code to ActiveMQ6 please open a Pull Request as outlined as part of the GitHub workflow described here: https://guides.github.com/introduction/flow/index.html. Once a pull request is opened it will be reviewed and commented on. Any further changes as a result of comments / review process should be addressed and reflected in the original pull request as outlined in the GitHub workflow. When the pull request has went through the review process and ready to merge, the reviewer should comment with "Ack, Ready to Push". Once an Ack message is received one of the ActiveMQ6 core team members will push the changes to upstream Apache ActiveMQ6 repository and close the pull request.
We also host a mirror of the ActiveMQ repository on GitHub: https://github.com/apache/activemq-6. We use this mirror for all code submissions and reviews. To submit code to ActiveMQ Artemis please open a Pull Request as outlined as part of the GitHub workflow described here: https://guides.github.com/introduction/flow/index.html. Once a pull request is opened it will be reviewed and commented on. Any further changes as a result of comments / review process should be addressed and reflected in the original pull request as outlined in the GitHub workflow. When the pull request has went through the review process and ready to merge, the reviewer should comment with "Ack, Ready to Push". Once an Ack message is received one of the ActiveMQ Artemis core team members will push the changes to upstream Apache ActiveMQ Artemis repository and close the pull request.
### Commit Messages
We follow the 50/72 git commit message format. An ActiveMQ6 commit message should be formatted in the following manner:
We follow the 50/72 git commit message format. An ActiveMQ Artemis commit message should be formatted in the following manner:
* Add the ACTIVEMQ6 JIRA or Bugzilla reference (if one exists) followed by a brief description of the change in the first line.
* Insert a single blank line after the first line.
@ -262,21 +262,21 @@ Due to incompatibilities between some open source licenses and the Apache v2.0 l
care must be taken when adding new dependencies to the project. The Apache Software Foundation 3rd party
licensing policy has more information here: http://www.apache.org/legal/3party.html
To keep track of all licenses in ActiveMQ6, new dependencies must be added in either the top level pom.xml or in test/pom.xml
To keep track of all licenses in ActiveMQ Artemis, new dependencies must be added in either the top level pom.xml or in test/pom.xml
(depending on whether this is a test only dependency or if it is used in the main code base). The dependency should be
added under the dependency management section with version and labelled with a comment highlighting the license for the
dependency version. See existing dependencies in the main pom.xml for examples. The dependency can then be added to
individual ActiveMQ6 modules *without* the version specified (the version is implied from the dependency management
section of the top level pom). This allows ActiveMQ6 developers to keep track of all dependencies and licenses.
individual ActiveMQ Artemis modules *without* the version specified (the version is implied from the dependency management
section of the top level pom). This allows ActiveMQ Artemis developers to keep track of all dependencies and licenses.
### Core Contributers
Core ActiveMQ6 members have write access to the Apache ActiveMQ6 repositories and will be responsible for Ack'ing and pushing commits contributed via pull requests on GitHub. The follow steps can be used as an example for how to set up relevant ActiveMQ6 repositories for reviewing and pushing changes.
Core ActiveMQ Artemis members have write access to the Apache ActiveMQ Artemis repositories and will be responsible for Ack'ing and pushing commits contributed via pull requests on GitHub. The follow steps can be used as an example for how to set up relevant ActiveMQ Artemis repositories for reviewing and pushing changes.
To setup repositories for reviewing and pushing:
```bash
# Clone the GitHub Mirror of ActiveMQ6 Repo:
# Clone the GitHub Mirror of ActiveMQ Artemis Repo:
git clone git@github.com:apache/activemq-6.git
# Add the following section to your <activemq6 repo>/.git/config statement to fetch all pull requests sent to the GitHub mirror. Note that the remote name for git@github.com:apache/activemq-6.git may be different. Be sure to edit all references to the remote name. In this case "activemq".
@ -324,7 +324,7 @@ To push commits from a pull request to the apache repository:
#### Notes:
The GitHub mirror repository is cloning the Apache ActiveMQ6 repository (The root repository). There maybe a slight delay between when a commit is pushed to the Apache repo and when that commit is reflected in the GitHub mirror. This may cause some difficulty when trying to push a PR to upstream (Apache) that has been merged on an out of date GitHub (mirror) master. You can wait for the mirror to update before performing the steps above. A solution to this is to change local master branch to track the upstream (Apache) master, rather than GitHub (mirror) master by editing your config to look like this:
The GitHub mirror repository is cloning the Apache ActiveMQ Artemis repository (The root repository). There maybe a slight delay between when a commit is pushed to the Apache repo and when that commit is reflected in the GitHub mirror. This may cause some difficulty when trying to push a PR to upstream (Apache) that has been merged on an out of date GitHub (mirror) master. You can wait for the mirror to update before performing the steps above. A solution to this is to change local master branch to track the upstream (Apache) master, rather than GitHub (mirror) master by editing your config to look like this:
```bash
[branch "master"]

View File

@ -29,7 +29,7 @@
<artifactId>activemq-boot</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 Boot</name>
<name>ActiveMQ Artemis Boot</name>
<properties>
<activemq.basedir>${project.basedir}/..</activemq.basedir>

View File

@ -25,7 +25,7 @@
<artifactId>activemq-bootstrap</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 Bootstrap</name>
<name>ActiveMQ Artemis Bootstrap</name>
<properties>
<activemq.basedir>${project.basedir}/..</activemq.basedir>

View File

@ -25,7 +25,7 @@
<artifactId>activemq-commons</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 Commons</name>
<name>ActiveMQ Artemis Commons</name>
<properties>
<activemq.basedir>${project.basedir}/..</activemq.basedir>

View File

@ -25,7 +25,7 @@
<artifactId>activemq-core-client</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 Core Client</name>
<name>ActiveMQ Artemis Core Client</name>
<properties>
<activemq.basedir>${project.basedir}/..</activemq.basedir>

View File

@ -25,7 +25,7 @@
<artifactId>activemq-dto</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 DTO</name>
<name>ActiveMQ Artemis DTO</name>
<properties>
<activemq.basedir>${project.basedir}/..</activemq.basedir>

View File

@ -25,7 +25,7 @@
<artifactId>activemq-jms-client</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Client</name>
<name>ActiveMQ Artemis JMS Client</name>
<properties>
<activemq.basedir>${project.basedir}/..</activemq.basedir>

View File

@ -25,7 +25,7 @@
<artifactId>activemq-jms-server</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Server</name>
<name>ActiveMQ Artemis JMS Server</name>
<properties>
<activemq.basedir>${project.basedir}/..</activemq.basedir>

View File

@ -25,7 +25,7 @@
<artifactId>activemq-journal</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 Journal</name>
<name>ActiveMQ Artemis Journal</name>
<properties>
<activemq.basedir>${project.basedir}/..</activemq.basedir>

View File

@ -25,7 +25,7 @@
<artifactId>activemq-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>ActiveMQ6 Maven Plugin</name>
<name>ActiveMQ Artemis Maven Plugin</name>
<properties>
<activemq.basedir>${project.basedir}/..</activemq.basedir>

View File

@ -15,7 +15,7 @@
limitations under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<name>ActiveMQ6 Native POM</name>
<name>ActiveMQ Artemis Native POM</name>
<modelVersion>4.0.0</modelVersion>
<parent>

View File

@ -23,6 +23,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>activemq-amqp-protocol</artifactId>
<name>ActiveMQ Artemis AMQP Protocol</name>
<properties>
<activemq.basedir>${project.basedir}/../..</activemq.basedir>

View File

@ -23,6 +23,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>activemq-openwire-protocol</artifactId>
<name>ActiveMQ Artemis OpenWire Protocol</name>
<properties>
<activemq.basedir>${project.parent.parent.basedir}</activemq.basedir>

View File

@ -23,6 +23,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>activemq-proton-plug</artifactId>
<name>ActiveMQ Artemis Proton Plug</name>
<properties>
<activemq.basedir>${project.basedir}/../..</activemq.basedir>

View File

@ -23,6 +23,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>activemq-stomp-protocol</artifactId>
<name>ActiveMQ Artemis STOMP Protocol</name>
<properties>
<activemq.basedir>${project.basedir}/../..</activemq.basedir>

View File

@ -24,6 +24,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>activemq-protocols</artifactId>
<name>ActiveMQ Artemis Protocols</name>
<packaging>pom</packaging>
<properties>

View File

@ -15,7 +15,7 @@
limitations under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<name>ActiveMQ6 RAR POM</name>
<name>ActiveMQ Artemis RAR POM</name>
<modelVersion>4.0.0</modelVersion>
<parent>

View File

@ -22,7 +22,7 @@
<version>10.0.0-SNAPSHOT</version>
</parent>
<name>ActiveMQ6 REST Interface Implementation</name>
<name>ActiveMQ Artemis REST Interface Implementation</name>
<groupId>org.apache.activemq.rest</groupId>
<artifactId>activemq-rest</artifactId>
<packaging>jar</packaging>

View File

@ -25,7 +25,7 @@
<artifactId>activemq-selector</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 Selector Implementation</name>
<name>ActiveMQ Artemis Selector Implementation</name>
<properties>
<activemq.basedir>${project.basedir}/..</activemq.basedir>

View File

@ -25,7 +25,7 @@
<artifactId>activemq-server</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 Server</name>
<name>ActiveMQ Artemis Server</name>
<properties>
<activemq.basedir>${project.basedir}/..</activemq.basedir>

View File

@ -25,7 +25,7 @@
<artifactId>activemq-service-extensions</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 Service Extensions</name>
<name>ActiveMQ Artemis Service Extensions</name>
<dependencies>
<dependency>

View File

@ -25,7 +25,7 @@
<artifactId>activemq-tools</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 Tools</name>
<name>ActiveMQ Artemis Tools</name>
<dependencies>
<dependency>

View File

@ -25,7 +25,7 @@
<artifactId>activemq-web</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 Web</name>
<name>ActiveMQ Artemis Web</name>
<properties>
<activemq.basedir>${project.basedir}/..</activemq.basedir>

View File

@ -25,7 +25,7 @@
<artifactId>activemq-website</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 Web</name>
<name>ActiveMQ Artemis Web</name>
<dependencies>
<dependency>

View File

@ -53,7 +53,7 @@
<li><a target="_blank" href="api/index.html">API</a></li>
<li><a target="_blank" href="user-manual/index.html">User Manual</a></li>
<li><a href="examples/index.html">Examples</a></li>
<li><a href="http://activemq.apache.org/activemq6">Apache ActiveMQ-6 Website</a></li>
<li><a href="http://activemq.apache.org/activemq6">Apache ActiveMQ Artemis Website</a></li>
</ul>
<div></div>
</div>

View File

@ -19,8 +19,8 @@ under the License.
<h1>User Manual</h1>
<p>If you are seeing this message, it is because the User Manual was not built during the Apache ActiveMQ-6 build. To
build Apache ActiveMQ-6 with the User Manual you must use the maven release profile:
<p>If you are seeing this message, it is because the User Manual was not built during the Apache ActiveMQ Artemis build. To
build Apache ActiveMQ Artemis with the User Manual you must use the maven release profile:
<code>mvn clean install -Prelease</code>.</p>
<p>Please see the README in the source distribution for more information.</p>

View File

@ -21,13 +21,13 @@
<parent>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-distribution</artifactId>
<artifactId>activemq-artemis-distribution</artifactId>
<version>10.0.0-SNAPSHOT</version>
</parent>
<artifactId>apache-activemq</artifactId>
<artifactId>apache-activemq-artemis</artifactId>
<packaging>pom</packaging>
<name>Apache ActiveMQ Distribution</name>
<name>Apache ActiveMQ Artemis Distribution</name>
<properties>
<schemaLocation>${project.build.directory}/${project.artifactId}-${project.version}-bin/${project.artifactId}-${project.version}/schema</schemaLocation>

View File

@ -27,9 +27,9 @@ under the License.
<version>10.0.0-SNAPSHOT</version>
</parent>
<artifactId>activemq-distribution</artifactId>
<artifactId>activemq-artemis-distribution</artifactId>
<packaging>pom</packaging>
<name>ActiveMQ6 Distribution</name>
<name>ActiveMQ Artemis Distribution</name>
<properties>
<skipLicenseCheck>true</skipLicenseCheck>

View File

@ -72,7 +72,7 @@ script `compile-native.sh`. This script will invoke the proper maven profile to
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building ActiveMQ6 Native POM 6.0.0
[INFO] Building ActiveMQ Artemis Native POM 6.0.0
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- nar-maven-plugin:3.0.0:nar-validate (default-nar-validate) @ activemq-native ---

Binary file not shown.

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-core-embedded-remote-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 Core Embedded Remote Example</name>
<name>ActiveMQ Artemis Core Embedded Remote Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-core-embedded-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 Core Embedded Example</name>
<name>ActiveMQ Artemis Core Embedded Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-core-perf-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 Perf Example</name>
<name>ActiveMQ Artemis Perf Example</name>
<dependencies>
<dependency>

View File

@ -30,7 +30,7 @@ under the License.
<groupId>org.apache.activemq.examples.core</groupId>
<artifactId>core-examples</artifactId>
<packaging>pom</packaging>
<name>ActiveMQ6 Core Examples</name>
<name>ActiveMQ Artemis Core Examples</name>
<properties>
<udp-address>231.7.7.7</udp-address>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-vertx-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 Vert.x Example</name>
<name>ActiveMQ Artemis Vert.x Example</name>
<properties>
<vertx.version>2.1.2</vertx.version>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-examples-common</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 Examples common</name>
<name>ActiveMQ Artemis Examples common</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-rar</artifactId>
<packaging>rar</packaging>
<name>ActiveMQ6 JMS RA</name>
<name>ActiveMQ Artemis JMS RA</name>
<dependencies>
<dependency>

View File

@ -35,7 +35,7 @@ under the License.
<artifactId>activemq-jms-aerogear-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS AeroGear Example</name>
<name>ActiveMQ Artemis JMS AeroGear Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-application-layer-failover-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Application Layer Failover Example</name>
<name>ActiveMQ Artemis JMS Application Layer Failover Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-bridge-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Bridge Example</name>
<name>ActiveMQ Artemis JMS Bridge Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-browser-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Browser Example</name>
<name>ActiveMQ Artemis JMS Browser Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-client-kickoff-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Kick Off Example</name>
<name>ActiveMQ Artemis JMS Kick Off Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-client-side-fileoverlistener-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Client Side Failover listener Example</name>
<name>ActiveMQ Artemis JMS Client Side Failover listener Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-client-side-load-balancing-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Client Side Load Balancing Example</name>
<name>ActiveMQ Artemis JMS Client Side Load Balancing Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-clustered-durable-subscription-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Clustered Durable Subscription Example</name>
<name>ActiveMQ Artemis JMS Clustered Durable Subscription Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-clustered-grouping-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS CLustered Grouping Example</name>
<name>ActiveMQ Artemis JMS CLustered Grouping Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>clustered-jgroups</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Clustered JGroups Example</name>
<name>ActiveMQ Artemis JMS Clustered JGroups Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>clustered-queue</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Clustered Queue Example</name>
<name>ActiveMQ Artemis JMS Clustered Queue Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-clustered-standalone-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Clustered Standalone Example</name>
<name>ActiveMQ Artemis JMS Clustered Standalone Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-clustered-static-discovery-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Clustered Static Discovery Example</name>
<name>ActiveMQ Artemis JMS Clustered Static Discovery Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-clustered-static-oneway-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Clustered Static One Way Example</name>
<name>ActiveMQ Artemis JMS Clustered Static One Way Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-clustered-topic-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Clustered Topic Example</name>
<name>ActiveMQ Artemis JMS Clustered Topic Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>colocated-failover-scale-down</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Colocated Failover Recover Only Example</name>
<name>ActiveMQ Artemis JMS Colocated Failover Recover Only Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>colocated-failover</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Colocated Failover Example</name>
<name>ActiveMQ Artemis JMS Colocated Failover Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-consumer-rate-limit-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Consumer Rate Limit Example</name>
<name>ActiveMQ Artemis JMS Consumer Rate Limit Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-dead-letter-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Dead Letter Example</name>
<name>ActiveMQ Artemis JMS Dead Letter Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-delayed-redelivery-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Delayed Redelivery Example</name>
<name>ActiveMQ Artemis JMS Delayed Redelivery Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-divert-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Divert Example</name>
<name>ActiveMQ Artemis JMS Divert Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-durable-subscription-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Durable Subscription Example</name>
<name>ActiveMQ Artemis JMS Durable Subscription Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-embedded-simple-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Simple Embedded Example</name>
<name>ActiveMQ Artemis JMS Simple Embedded Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-embedded-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Embedded Example</name>
<name>ActiveMQ Artemis JMS Embedded Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-expiry-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Expiry Example</name>
<name>ActiveMQ Artemis JMS Expiry Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>ha-policy-autobackup</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS HA Policy Auto backup example</name>
<name>ActiveMQ Artemis JMS HA Policy Auto backup example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-http-transport-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Http Transport Example</name>
<name>ActiveMQ Artemis JMS Http Transport Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-instantiate-connection-factory-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Instantiate Connection Factory Example</name>
<name>ActiveMQ Artemis JMS Instantiate Connection Factory Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-interceptor-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Interceptor Example</name>
<name>ActiveMQ Artemis JMS Interceptor Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-auto-closeable-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Auto Closable Example</name>
<name>ActiveMQ Artemis JMS Auto Closable Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-jms-bridge-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Bridge Example</name>
<name>ActiveMQ Artemis JMS Bridge Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-completion-listener-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Completion Listener Example</name>
<name>ActiveMQ Artemis JMS Completion Listener Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-context-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Context Example</name>
<name>ActiveMQ Artemis JMS Context Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-shared-consumer-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Shared Consumer Example</name>
<name>ActiveMQ Artemis JMS Shared Consumer Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-jmx-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS "JMX" Example</name>
<name>ActiveMQ Artemis JMS "JMX" Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-large-message-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Large Message Example</name>
<name>ActiveMQ Artemis JMS Large Message Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-last-value-queue-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Last Value Queue Example</name>
<name>ActiveMQ Artemis JMS Last Value Queue Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-management-notifications-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Management Notifications Example</name>
<name>ActiveMQ Artemis JMS Management Notifications Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-management-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Management Example</name>
<name>ActiveMQ Artemis JMS Management Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-message-counters-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Message Counter Example</name>
<name>ActiveMQ Artemis JMS Message Counter Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-message-group-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Message Group Example</name>
<name>ActiveMQ Artemis JMS Message Group Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-message-group2-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Message Group Example 2</name>
<name>ActiveMQ Artemis JMS Message Group Example 2</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-message-priority-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS MessagePriorityExample Example</name>
<name>ActiveMQ Artemis JMS MessagePriorityExample Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-multiple-failover-failback-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Multiple Failover Failback Example</name>
<name>ActiveMQ Artemis JMS Multiple Failover Failback Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-multiple-failover-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Multiple Failover Example</name>
<name>ActiveMQ Artemis JMS Multiple Failover Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-no-consumer-buffering-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS No Consumer Buffering Example</name>
<name>ActiveMQ Artemis JMS No Consumer Buffering Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>non-transaction-failover</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Non Transaction Failover Example</name>
<name>ActiveMQ Artemis JMS Non Transaction Failover Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-openwire-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Openwire Example</name>
<name>ActiveMQ Artemis JMS Openwire Example</name>
<profiles>
<profile>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-paging-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Paging Example</name>
<name>ActiveMQ Artemis JMS Paging Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-perf-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS PerfExample Example</name>
<name>ActiveMQ Artemis JMS PerfExample Example</name>
<dependencies>
<dependency>

View File

@ -30,7 +30,7 @@ under the License.
<groupId>org.apache.activemq.examples.jms</groupId>
<artifactId>jms-examples</artifactId>
<packaging>pom</packaging>
<name>ActiveMQ6 JMS Examples</name>
<name>ActiveMQ Artemis JMS Examples</name>
<properties>
<udp-address>231.7.7.7</udp-address>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-pre-acknowledge-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Pre Acknowledge Example</name>
<name>ActiveMQ Artemis JMS Pre Acknowledge Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-producer-rate-limit-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Producer Rate Limit Example</name>
<name>ActiveMQ Artemis JMS Producer Rate Limit Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-protoncpp</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 AMQP CPP Example</name>
<name>ActiveMQ Artemis AMQP CPP Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-proton-j-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 Proton-J Example</name>
<name>ActiveMQ Artemis Proton-J Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-proton-ruby-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 Proton Ruby Examplee</name>
<name>ActiveMQ Artemis Proton Ruby Examplee</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-queue-message-redistribution-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Queue Message Redistribution Example</name>
<name>ActiveMQ Artemis JMS Queue Message Redistribution Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-queue-requestor-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Queue Requestor Example</name>
<name>ActiveMQ Artemis JMS Queue Requestor Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-queue-selector-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Queue Selector Example</name>
<name>ActiveMQ Artemis JMS Queue Selector Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-queue-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Queue Example</name>
<name>ActiveMQ Artemis JMS Queue Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-reattach-node-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Reattach Node Example</name>
<name>ActiveMQ Artemis JMS Reattach Node Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-replicated-failback-static-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Replicated Failback Static Example</name>
<name>ActiveMQ Artemis JMS Replicated Failback Static Example</name>
<dependencies>
<dependency>

View File

@ -29,7 +29,7 @@ under the License.
<artifactId>activemq-jms-replicated-failback-example</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ6 JMS Replicated Failback Example</name>
<name>ActiveMQ Artemis JMS Replicated Failback Example</name>
<dependencies>
<dependency>

Some files were not shown because too many files have changed in this diff Show More