|
1 |
| -# ActiveMQ Artemis |
| 1 | +# Welcome to Apache ActiveMQ Artemis |
2 | 2 |
|
3 |
| -This file describes some minimum 'stuff one needs to know' to get started coding in this project. |
| 3 | +ActiveMQ Artemis is the next generation message broker from Apache ActiveMQ. |
4 | 4 |
|
5 |
| -## Source |
| 5 | +## Getting Started |
6 | 6 |
|
7 |
| -For details about the modifying the code, building the project, running tests, IDE integration, etc. see |
8 |
| -our [Hacking Guide](./docs/hacking-guide/en/SUMMARY.md). |
| 7 | +See the [User Manual](https://activemq.apache.org/components/artemis/documentation/latest/) for an in-depth explanation of all aspects of broker configuration and behavior. |
9 | 8 |
|
10 |
| -## Build Status |
| 9 | +The broker ships with many [examples](https://activemq.apache.org/components/artemis/documentation/latest/examples.html) which you can run, inspect, & modify. |
11 | 10 |
|
12 |
| -Build Status: [](https://travis-ci.org/apache/activemq-artemis) |
| 11 | +## How to Build, etc. |
13 | 12 |
|
14 |
| -## Building the ASYNC IO library |
| 13 | +See the [Hacking Guide](https://activemq.apache.org/components/artemis/documentation/hacking-guide/) for details about modifying the code, building the project, running tests, IDE integration, etc. |
15 | 14 |
|
16 |
| -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. |
| 15 | +## Migrate from ActiveMQ "Classic" |
17 | 16 |
|
18 |
| -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. |
| 17 | +See the [Migration Guide](https://activemq.apache.org/components/artemis/migration-documentation/) for information about the architectural and configuration differences between ActiveMQ "Classic" (i.e. 5.x) and ActiveMQ Artemis. |
19 | 18 |
|
20 |
| -To build the ActiveMQ Artemis ASYNCIO native libraries, please follow the instructions in the artemis-native/README. |
| 19 | +## Report an Issue |
21 | 20 |
|
22 |
| -## Documentation |
23 |
| - |
24 |
| -Our documentation is always in sync with our releases at the [Apache ActiveMQ Artemis](https://activemq.apache.org/artemis/docs.html) website. |
25 |
| - |
26 |
| -Or you can also look at the current main version on [github](https://github.com/apache/activemq-artemis/blob/main/docs/user-manual/en/SUMMARY.md). |
27 |
| - |
28 |
| -## Examples |
29 |
| - |
30 |
| -To run an example firstly make sure you have run |
31 |
| - |
32 |
| - $ mvn -Prelease install |
33 |
| - |
34 |
| -If the project version has already been released then this is unnecessary. |
35 |
| - |
36 |
| -Each individual example can be run using this command from its corresponding directory: |
37 |
| - |
38 |
| - $ mvn verify |
39 |
| - |
40 |
| -If you wish to run groups of examples then use this command from a parent directory (e.g. examples/features/standard): |
41 |
| - |
42 |
| - $ mvn -Pexamples verify |
43 |
| - |
44 |
| -### Recreating the examples |
45 |
| - |
46 |
| -If you are trying to copy the examples somewhere else and modifying them. Consider asking Maven to explicitly list all the dependencies: |
47 |
| - |
48 |
| - # if trying to modify the 'topic' example: |
49 |
| - cd examples/jms/topic && mvn dependency:list |
50 |
| - |
51 |
| -### Open Web Application Security Project (OWASP) Report |
52 |
| - |
53 |
| -If you wish to generate the report for CCV dependencies, you may run it with the -Powasp profile |
54 |
| - |
55 |
| - $ mvn -Powasp verify |
56 |
| - |
57 |
| -The output will be under ./target/dependency-check-report.html **for each** sub-module. |
58 |
| - |
59 |
| -## Bugs |
60 |
| - |
61 |
| -Issues are tracked at https://issues.apache.org/jira/projects/ARTEMIS/ |
| 21 | +See [our website](https://activemq.apache.org/issues) for details on how to report an bug, request a feature, etc. |
0 commit comments