Mirror of Apache ActiveMQ Artemis
Go to file
Clebert Suconic 0f2c4f295e This closes #3590 2021-05-24 14:09:20 -04:00
.github/workflows NO-JIRA: update to current setup-java action, take advantage of tool cache install for LTS versions 2021-05-17 15:04:43 +01:00
.mvn/wrapper
.settings
artemis-boot
artemis-cdi-client ARTEMIS-3296: get things building on Java 16 (and 17EA+21) 2021-05-17 08:28:46 -04:00
artemis-cli ARTEMIS-3309 Add a parameter to limit messages to move or transfer 2021-05-24 14:09:20 -04:00
artemis-commons ARTEMIS-3229 add details to AdressControl MBean 2021-05-24 11:51:14 -05:00
artemis-core-client ARTEMIS-3309 Add a parameter to limit messages to move or transfer 2021-05-24 14:09:20 -04:00
artemis-core-client-all
artemis-core-client-osgi
artemis-distribution ARTEMIS-3314: fix warnings about not including the module artifact 2021-05-24 11:28:40 -04:00
artemis-docker
artemis-dto no jira - fix schema gen on jdk8 on non clean build, only parse the dto files and not the integration tests 2021-04-15 13:29:22 -04:00
artemis-features ARTEMIS-3221 Migrating to Jakarta EE 8 artifacts 2021-04-09 11:49:59 -04:00
artemis-hawtio ARTEMIS-3256 internalqueue and internaladdress get their own color in the diagram 2021-04-19 10:20:35 -04:00
artemis-jakarta-client ARTEMIS-3221 Migrating to Jakarta EE 8 artifacts 2021-04-09 11:49:59 -04:00
artemis-jakarta-ra
artemis-jakarta-server
artemis-jakarta-service-extensions
artemis-jdbc-store ARTEMIS-3297 Journal Retention Feature 2021-05-18 16:29:18 -04:00
artemis-jms-client ARTEMIS-3221 Migrating to Jakarta EE 8 artifacts 2021-04-09 11:49:59 -04:00
artemis-jms-client-all
artemis-jms-client-osgi
artemis-jms-server ARTEMIS-3221 Migrating to Jakarta EE 8 artifacts 2021-04-09 11:49:59 -04:00
artemis-journal ARTEMIS-3297 Journal Retention Feature 2021-05-18 16:29:18 -04:00
artemis-junit ARTEMIS-3221 Migrating to Jakarta EE 8 artifacts 2021-04-09 11:49:59 -04:00
artemis-maven-plugin ARTEMIS-3221 Migrating to Jakarta EE 8 artifacts 2021-04-09 11:49:59 -04:00
artemis-protocols ARTEMIS-3237 logging OpenWire producer exception is confusing 2021-05-24 12:14:22 -05:00
artemis-ra ARTEMIS-3221 Migrating to Jakarta EE 8 artifacts 2021-04-09 11:49:59 -04:00
artemis-rest ARTEMIS-3221 Migrating to Jakarta EE 8 artifacts 2021-04-09 11:49:59 -04:00
artemis-selector ARTEMIS-3304: replace use of deprecated constructors marked as for-removal since Java 16 2021-05-17 15:27:28 +01:00
artemis-server ARTEMIS-3309 Add a parameter to limit messages to move or transfer 2021-05-24 14:09:20 -04:00
artemis-server-osgi
artemis-service-extensions ARTEMIS-3221 Migrating to Jakarta EE 8 artifacts 2021-04-09 11:49:59 -04:00
artemis-web
artemis-website
docs ARTEMIS-3283 Added SlowConsumerThreshold unit configuration option 2021-05-24 11:49:38 -05:00
etc
examples ARTEMIS-3221 Migrating to Jakarta EE 8 artifacts 2021-04-09 11:49:59 -04:00
integration/activemq-spring-integration
scripts NO-JIRA renaming branch name to main on scripts 2021-04-11 14:26:29 -04:00
tests ARTEMIS-3309 Add a parameter to limit messages to move or transfer 2021-05-24 14:09:20 -04:00
.RELEASING.md.swo
.asf.yaml
.gitignore
.project
.travis.yml ARTEMIS-3296: get things building on Java 16 (and 17EA+21) 2021-05-17 08:28:46 -04:00
LICENSE
NOTICE
README.md
RELEASING.md NO-JIRA Fixing links on RELEASING.md 2021-02-17 15:57:14 -05:00
artemis_doap.rdf
mvnw
mvnw.cmd
pom.xml NO-JIRA Fix maven compiler version for java 1.8 2021-05-19 16:09:19 -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.

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.