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

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