[maven-release-plugin] copy for tag 1.2.0
[maven-release-plugin] prepare release 1.2.0
157 files changed
tree: 2a7029ff694454a8439d81b99c5814bf84e5f6e3
  1. .settings/
  2. artemis-boot/
  3. artemis-cli/
  4. artemis-commons/
  5. artemis-core-client/
  6. artemis-distribution/
  7. artemis-dto/
  8. artemis-features/
  9. artemis-jms-client/
  10. artemis-jms-server/
  11. artemis-journal/
  12. artemis-maven-plugin/
  13. artemis-native/
  14. artemis-protocols/
  15. artemis-ra/
  16. artemis-rest/
  17. artemis-selector/
  18. artemis-server/
  19. artemis-server-osgi/
  20. artemis-service-extensions/
  21. artemis-web/
  22. artemis-website/
  23. docs/
  24. etc/
  25. examples/
  26. integration/
  27. scripts/
  28. tests/
  29. .gitignore
  30. .project
  31. artemis_doap.rdf
  32. CMakeLists.txt
  33. LICENSE
  34. NOTICE
  35. pom.xml
  36. README.md
  37. RELEASING.md
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.

then you will need to set the following maven options, on Linux by

$ export MAVEN_OPTS="-Xmx1024m -XX:MaxPermSize=512m"

and the finally run the examples by

$ mvn verify

You can also run individual examples by running the same command from the directory of which ever example you want to run. NB for this make sure you have installed examples/common.

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