Mirror of Apache ActiveMQ Artemis
Go to file
Erwin Dondorp bd9ca52d9a NO-JIRA added space to separate 2 words that otherwise appear joined 2021-02-01 19:20:51 -05:00
.github/workflows NO-JIRA Update Travis and github builds to include jmh as part of their builds 2020-11-17 16:17:46 -05:00
.mvn/wrapper
.settings
artemis-boot ARTEMIS-2026 don't override 'java.io.tmpdir' if set 2021-01-25 13:29:59 -06:00
artemis-cdi-client [maven-release-plugin] prepare for next development iteration 2020-11-02 17:45:51 -05:00
artemis-cli ARTEMIS-3069 Add option to mask using the configured password-codec 2021-01-15 18:05:59 +01:00
artemis-commons ARTEMIS-3084 Deal with async close and double close 2021-02-01 15:29:39 -05:00
artemis-core-client ARTEMIS-3008 mngmnt op to reload config file 2021-01-25 13:35:19 -06:00
artemis-core-client-all [maven-release-plugin] prepare for next development iteration 2020-11-02 17:45:51 -05:00
artemis-core-client-osgi [maven-release-plugin] prepare for next development iteration 2020-11-02 17:45:51 -05:00
artemis-distribution [maven-release-plugin] prepare for next development iteration 2020-11-02 17:45:51 -05:00
artemis-docker
artemis-dto [maven-release-plugin] prepare for next development iteration 2020-11-02 17:45:51 -05:00
artemis-features ARTEMIS-3060 Upgrade to Guava 30.1 2021-01-11 12:48:40 +01:00
artemis-hawtio ARTEMIS-3043 - just a console tweak to add a scrollbar on the column picker modal in case its too big for the screen 2021-01-19 09:14:22 +00:00
artemis-jdbc-store ARTEMIS-3084 Eliminate Block on moving to next file on libaio 2021-01-28 11:10:40 -05:00
artemis-jms-client ARTEMIS-2997 NPE with JMS queue/topic toString() 2020-11-17 16:21:54 -05:00
artemis-jms-client-all [maven-release-plugin] prepare for next development iteration 2020-11-02 17:45:51 -05:00
artemis-jms-client-osgi [maven-release-plugin] prepare for next development iteration 2020-11-02 17:45:51 -05:00
artemis-jms-server [maven-release-plugin] prepare for next development iteration 2020-11-02 17:45:51 -05:00
artemis-journal ARTEMIS-3084 Deal with async close and double close 2021-02-01 15:29:39 -05:00
artemis-junit [maven-release-plugin] prepare for next development iteration 2020-11-02 17:45:51 -05:00
artemis-maven-plugin [maven-release-plugin] prepare for next development iteration 2020-11-02 17:45:51 -05:00
artemis-protocols ARTEMIS-3091 Fix AMQP message headers export from the journal 2021-02-01 11:54:37 -05:00
artemis-ra [maven-release-plugin] prepare for next development iteration 2020-11-02 17:45:51 -05:00
artemis-rest [maven-release-plugin] prepare for next development iteration 2020-11-02 17:45:51 -05:00
artemis-selector [maven-release-plugin] prepare for next development iteration 2020-11-02 17:45:51 -05:00
artemis-server NO-JIRA added space to separate 2 words that otherwise appear joined 2021-02-01 19:20:51 -05:00
artemis-server-osgi [maven-release-plugin] prepare for next development iteration 2020-11-02 17:45:51 -05:00
artemis-service-extensions [ARTEMIS-3004] RA connection properties are not propagated to XARecoveryConfig 2020-12-01 09:44:49 -05:00
artemis-tools [maven-release-plugin] prepare for next development iteration 2020-11-02 17:45:51 -05:00
artemis-web [maven-release-plugin] prepare for next development iteration 2020-11-02 17:45:51 -05:00
artemis-website [maven-release-plugin] prepare for next development iteration 2020-11-02 17:45:51 -05:00
docs ARTEMIS-1884 add plugin API for message level authorization policies 2021-01-25 13:44:36 -06:00
etc
examples ARTEMIS-1884 add plugin API for message level authorization policies 2021-01-25 13:44:36 -06:00
integration/activemq-spring-integration [maven-release-plugin] prepare for next development iteration 2020-11-02 17:45:51 -05:00
scripts NO-JIRA Improving SoakPagingTest 2020-12-21 12:59:40 -05:00
tests ARTEMIS-3089 direct delivery can break LVQ+non-destructive 2021-02-01 19:19:20 -05:00
.RELEASING.md.swo
.asf.yaml NO-JIRA disable merge and squash buttons on github 2020-11-16 10:30:07 -05:00
.gitignore
.project
.travis.yml NO-JIRA Update Travis and github builds to include jmh as part of their builds 2020-11-17 16:17:46 -05:00
LICENSE
NOTICE
README.md
RELEASING.md NO-JIRA update on RELEASING.md 2020-11-02 20:27:40 -05:00
artemis_doap.rdf
mvnw
mvnw.cmd
pom.xml ARTEMIS-3060 Upgrade to Guava 30.1 2021-01-11 12:48:40 +01: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.

Build Status

Build Status: Build Status

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.