From a27cf2af712f70122812cfb84a54f41af56b9f7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E6=99=9F=20Wu=20Sheng?= Date: Mon, 13 Sep 2021 21:15:33 +0800 Subject: [PATCH] Fix doc format issue. (#24) --- docs/en/contribution/compiling.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/docs/en/contribution/compiling.md b/docs/en/contribution/compiling.md index 48771ecf7..0c5450357 100644 --- a/docs/en/contribution/compiling.md +++ b/docs/en/contribution/compiling.md @@ -4,15 +4,19 @@ This document will help you compile and build a project in your maven and set yo Prepare JDK 8+. * If you clone codes from https://github.com/apache/skywalking-java -> git clone https://github.com/apache/skywalking-java.git -> cd skywalking-java -> ./mvnw clean package -Pall +```shell +git clone https://github.com/apache/skywalking-java.git +cd skywalking-java +./mvnw clean package -Pall +``` * If you download source codes tar from https://skywalking.apache.org/downloads/ -> ./mvnw clean package +```shell +./mvnw clean package +``` The agent binary package is generated in `skywalking-agent` folder. Set **Generated Source Codes**(`grpc-java` and `java` folders in **apm-protocol/apm-network/target/generated-sources/protobuf**) -folders if you are using IntelliJ IDE. \ No newline at end of file +folders if you are using IntelliJ IDE.