1
- Build instructions for RocketMQ
1
+ Build Instructions for Apache RocketMQ
2
2
3
3
====================================================
4
4
5
- (1) Requisites
5
+ (1) Prerequisites
6
6
7
- JDK 1.7+ is required in order to compile and run RocketMQ.
7
+ JDK 1.7+ is required in order to compile and run RocketMQ.
8
8
9
- RocketMQ utilizes Maven as a distribution management and packaging tool. Version 3.0.3 or later is required.
10
- Maven installation and configuration instructions can be found here:
9
+ RocketMQ utilizes Maven as a distribution management and packaging tool. Version 3.0.3 or later is required.
10
+ Maven installation and configuration instructions can be found here:
11
11
12
- http://maven.apache.org/run-maven/index.html
12
+ http://maven.apache.org/run-maven/index.html
13
13
14
14
15
- (2) Executing test cases
15
+ (2) Run test cases
16
16
17
- Execute the following command in order to compile and test the components:
17
+ Execute the following command in order to compile and run test cases of each components:
18
18
19
- $ mvn test
19
+ $ mvn test
20
20
21
21
22
- (3) Importing projects to eclipse
22
+ (3) Import projects to Eclipse IDE
23
23
24
- First, generate eclipse project files:
24
+ First, generate eclipse project files:
25
25
26
- $ mvn -U eclipse:eclipse
26
+ $ mvn -U eclipse:eclipse
27
27
28
- Then, import to eclipse by specifying the root directory of the project via:
28
+ Then, import to eclipse by specifying the root directory of the project via:
29
29
30
- [File] > [Import] > [Existing Projects into Workspace].
30
+ [File] > [Import] > [Existing Projects into Workspace].
31
31
32
32
33
- (4) Building packages
33
+ (4) Build distribution packages
34
34
35
- Execute the following command in order to build the tar.gz packages and install JAR to the local repository:
35
+ Execute the following command in order to build the tar.gz packages and install JAR into local repository:
36
36
37
- $ mvn clean install -Prelease-all assembly:assembly -U
37
+ $ mvn -Prelease-all -DskipTests clean package install -U
0 commit comments