How-to-build.md 3.9 KB
Newer Older
wu-sheng's avatar
wu-sheng 已提交
1
# How to build project
2
This document helps people to compile and build the project in your maven and set your IDE.
wu-sheng's avatar
wu-sheng 已提交
3

4 5 6
## Build Project
**Because we are using Git submodule, we recommend don't use `GitHub` tag or release page to download source codes for compiling.**

J
José Augusto 已提交
7 8
### Maven behind Proxy
If you need to execute build behind the proxy, edit the *.mvn/jvm.config* and put the follow properties:
9
```properties
J
José Augusto 已提交
10 11 12 13 14 15 16 17
-Dhttp.proxyHost=proxy_ip
-Dhttp.proxyPort=proxy_port
-Dhttps.proxyHost=proxy_ip
-Dhttps.proxyPort=proxy_port 
-Dhttp.proxyUser=username
-Dhttp.proxyPassword=password
```

18
### Build from GitHub
19
1. Prepare git, JDK8+ and Maven 3.6+
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
1. Clone project

    If you want to build a release from source codes, provide a `tag name` by using `git clone -b [tag_name] ...` while cloning.
    
    ```bash
    git clone --recurse-submodules https://github.com/apache/skywalking.git
    cd skywalking/
    
    OR
    
    git clone https://github.com/apache/skywalking.git
    cd skywalking/
    git submodule init
    git submodule update
    ```
   
36
1. Run `./mvnw clean package -DskipTests`
37
1. All packages are in `/dist` (.tar.gz for Linux and .zip for Windows).
38

wu-sheng's avatar
wu-sheng 已提交
39 40 41 42 43
### Build from Apache source code release
- What is `Apache source code release`?

For each official Apache release, there is a complete and independent source code tar, which is including all source codes. You could download it from [SkyWalking Apache download page](http://skywalking.apache.org/downloads/). No git related stuff required when compiling this. Just follow these steps.

44
1. Prepare JDK8+ and Maven 3.6+
45
1. Run `./mvnw clean package -DskipTests`
wu-sheng's avatar
wu-sheng 已提交
46
1. All packages are in `/dist`.(.tar.gz for Linux and .zip for Windows).
wu-sheng's avatar
wu-sheng 已提交
47

48 49 50 51 52
### Advanced compile
SkyWalking is a complex maven project, including many modules, which could cause long compiling time. 
If you just want to recompile part of the project, you have following options
- Compile agent and package
>  ./mvnw package -Pagent,dist
53 54 55 56 57

or

> make build.agent

58 59 60
If you intend to compile a single one plugin, such as in the dev stage, you could
>  cd plugin_module_dir & mvn clean package

61 62
- Compile backend and package
>  ./mvnw package -Pbackend,dist
63 64 65 66 67

or

> make build.backend

68 69 70
- Compile UI and package
>  ./mvnw package -Pui,dist

71 72 73 74 75 76 77 78
or

> make build.ui


### Build docker images
We can build docker images of `backend` and `ui` with `Makefile` located in root folder.

G
Gao Hongtao 已提交
79
Refer to [Build docker image](../../../docker) for more details.
80

wu-sheng's avatar
wu-sheng 已提交
81
## Setup your IntelliJ IDEA
S
songzhendong 已提交
82
**NOTICE**: If you clone the codes from GitHub, please make sure that you had finished step 1 to 3 in section **[Build from GitHub](#build-from-github)**, if you download the source codes from the official website of SkyWalking, please make sure that you had followed the steps in section **[Build from Apache source code release](#build-from-apache-source-code-release)**.
D
Daming 已提交
83

wu-sheng's avatar
wu-sheng 已提交
84
1. Import the project as a maven project
85
1. Run `./mvnw compile -Dmaven.test.skip=true` to compile project and generate source codes. Because we use gRPC and protobuf.
wu-sheng's avatar
wu-sheng 已提交
86
1. Set **Generated Source Codes** folders.
87
    * `grpc-java` and `java` folders in **apm-protocol/apm-network/target/generated-sources/protobuf**
X
XiaoFu 已提交
88
    * `grpc-java` and `java` folders in **oap-server/server-core/target/generated-sources/protobuf**
89
    * `grpc-java` and `java` folders in **oap-server/server-receiver-plugin/receiver-proto/target/generated-sources/fbs**
wu-sheng's avatar
wu-sheng 已提交
90
    * `grpc-java` and `java` folders in **oap-server/server-receiver-plugin/receiver-proto/target/generated-sources/protobuf**
wu-sheng's avatar
wu-sheng 已提交
91
    * `grpc-java` and `java` folders in **oap-server/exporter/target/generated-sources/protobuf**
92
    * `grpc-java` and `java` folders in **oap-server/server-configuration/grpc-configuration-sync/target/generated-sources/protobuf**
93
    * `grpc-java` and `java` folders in **oap-server/server-alarm-plugin/target/generated-sources/protobuf**
W
wuguangkuo 已提交
94
    * `antlr4` folder in **oap-server/oal-grammar/target/generated-sources**