[maven-release-plugin] copy for tag 1.0.0
[maven-release-plugin] prepare release 1.0.0
142 files changed
tree: 17a7b5414758a978bc56f0d1df0b75b4b2853a45
  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. LICENSE
  31. NOTICE
  32. pom.xml
  33. README.md
  34. 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.

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