Mirror of Apache ActiveMQ Artemis
Go to file
Clebert Suconic 9f7fc88363 This closes #835 2016-11-02 15:53:00 -04:00
.mvn/wrapper ARTEMIS-613 Artemis build enhancements 2016-07-05 15:13:35 -04:00
.settings ACTIVEMQ6-1 - Initial HornetQ Donation Commit 2014-11-10 10:31:25 -06:00
artemis-boot ARTEMIS-765 Improve Checkstyle 2016-09-30 11:12:09 -04:00
artemis-cdi-client ARTEMIS-756 Moving Client CDI as a main module 2016-10-24 12:12:18 -04:00
artemis-cli NO-JIRA small improvement on CLI, retry with user input 2016-11-02 15:52:25 -04:00
artemis-commons ARTEMIS-786 Store user's password in hash form by default 2016-11-02 14:59:00 -04:00
artemis-core-client ARTEMIS-832 Openwire was ignoring data syncs. 2016-11-02 13:17:12 -05:00
artemis-distribution ARTEMIS-786 Store user's password in hash form by default 2016-11-02 14:59:00 -04:00
artemis-dto ARTEMIS-801 Dealing properly with Spaces and Special Characters on broker 2016-10-17 22:04:21 -04:00
artemis-features Netty upgrade OSGi fix 2016-10-11 14:32:10 +02:00
artemis-jdbc-store ARTEMIS-832 Openwire was ignoring data syncs. 2016-11-02 13:17:12 -05:00
artemis-jms-client ARTEMIS-756 disabling finalize check over CDI Connection Factories 2016-10-24 10:37:27 -04:00
artemis-jms-server ARTEMIS-822 Injecting IO Pools into and from ArtemisServerImpl 2016-10-31 11:34:27 -04:00
artemis-journal ARTEMIS-832 Openwire was ignoring data syncs. 2016-11-02 13:17:12 -05:00
artemis-junit javadoc: Fix doclint {@code} within <code> warnings 2016-10-10 10:02:49 +02:00
artemis-maven-plugin ARTEMIS-765 Improve Checkstyle 2016-09-30 11:12:09 -04:00
artemis-native ARTEMIS-832 32 bits compilation 2016-11-02 13:17:12 -05:00
artemis-protocols ARTEMIS-814 Moving ProtonClientSenderContext towards the client package 2016-11-02 14:24:51 -04:00
artemis-ra ARTEMIS-765 Improve Checkstyle 2016-09-30 11:12:09 -04:00
artemis-rest ARTEMIS-735 Fixing code after Rest refactoring 2016-10-24 12:07:43 -04:00
artemis-selector Fix NPE in empty InExpression.toString 2016-10-13 00:25:29 +03:00
artemis-server ARTEMIS-786 Store user's password in hash form by default 2016-11-02 14:59:00 -04:00
artemis-server-osgi ARTEMIS-830 Remove cyclic dependencies 2016-10-28 16:32:04 -04:00
artemis-service-extensions ARTEMIS-765 Improve Checkstyle 2016-09-30 11:12:09 -04:00
artemis-web ARTEMIS-835 Quick restart of broker will leave tmp dir dirty 2016-11-02 13:43:51 -04:00
artemis-website ARTEMIS-765 Improve Checkstyle 2016-09-30 11:12:09 -04:00
docs ARTEMIS-786 Store user's password in hash form by default 2016-11-02 14:59:00 -04:00
etc Add EditorConfig 2016-10-10 10:01:01 +02:00
examples ARTEMIS-756 Moving Client CDI as a main module 2016-10-24 12:12:18 -04:00
integration ARTEMIS-756 Moving Client CDI as a main module 2016-10-24 12:12:18 -04:00
scripts NO-JIRA Adding script to help debug data on testcases 2016-10-07 14:36:05 -04:00
tests ARTEMIS-814: Refactor client connection and allow adding custom event handlers 2016-11-02 14:24:44 -04:00
.gitignore Add EditorConfig 2016-10-10 10:01:01 +02:00
.project More name changes to activemq 2014-11-19 16:01:54 -05:00
CMakeLists.txt ARTEMIS-163 First pass on the native AIO refactoring 2015-07-29 22:12:03 -04:00
LICENSE ARTEMIS-565 Replace json.org with javax.json 2016-07-25 21:44:57 -04:00
NOTICE update copyright in src Notice 2016-06-09 12:20:22 +01:00
README.md Adding OWASP reporting into pom 2016-09-13 17:06:25 +01:00
RELEASING.md Adding my releasing experience to RELEASING.md 2016-09-08 17:20:42 +01:00
artemis_doap.rdf Update vendor to ASF 2015-05-30 08:37:28 +02:00
mvnw ARTEMIS-613 Artemis build enhancements 2016-07-05 15:13:35 -04:00
mvnw.cmd ARTEMIS-613 Artemis build enhancements 2016-07-05 15:13:35 -04:00
pom.xml https://issues.apache.org/jira/browse/ARTEMIS-819 2016-10-24 19:37:57 -04:00

README.md

ActiveMQ Artemis

This file describes some minimum 'stuff one needs to know' to get started coding in this project.

Source

For details about the modifying the code, building the project, running tests, IDE integration, etc. see our Hacking Guide.

Building the ASYNC IO library

ActiveMQ Artemis provides two journal persistence types, NIO (which uses the Java NIO libraries), and ASYNCIO which interacts with the linux kernel libaio library. The ASYNCIO journal type should be used where possible as it is far superior in terms of performance.

ActiveMQ Artemis does not ship with the Artemis Native ASYNCIO library in the source distribution. These need to be built prior to running "mvn install", to ensure that the ASYNCIO journal type is available in the resulting build. Don't worry if you don't want to use ASYNCIO or your system does not support libaio, ActiveMQ Artemis will check at runtime to see if the required libraries and system dependencies are available, if not it will default to using NIO.

To build the ActiveMQ Artemis ASYNCIO native libraries, please follow the instructions in the artemis-native/README.

Documentation

Our documentation is always in sync with our releases at the Apache ActiveMQ Artemis website.

Or you can also look at the current master version on github.

Examples

To run an example firstly make sure you have run

$ mvn -Prelease install

If the project version has already been released then this is unnecessary.

Each individual example can be run using this command from its corresponding directory:

$ mvn verify

If you wish to run groups of examples then use this command from a parent directory (e.g. examples/features/standard):

$ mvn -Pexamples verify

Recreating the examples

If you are trying to copy the examples somewhere else and modifying them. Consider asking Maven to explicitly list all the dependencies:

# if trying to modify the 'topic' example:
cd examples/jms/topic && mvn dependency:list

Open Web Application Security Project (OWASP) Report

If you wish to generate the report for CCV dependencies, you may run it with the -Powasp profile

$ mvn -Powasp verify

The output will be under ./target/dependency-check-report.html for each sub-module.