Skip to content

Commit

Permalink
update quickstart md files for gradle version (#332)
Browse files Browse the repository at this point in the history
* [ISSUE #325]Update gradle configuration for publishing package to maven repository

* update build.gradle

* update build.gradle and gradle.properties

* update build.gradle and gradle.properties for publish to maven repository

* * update gradle version for instructions
* fix: dist task exception
  • Loading branch information
xwm1992 authored May 8, 2021
1 parent c82b71b commit da86a35
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ subprojects {
}
copy {
into '../dist/lib'
from project.configurations.runtime
from project.configurations.runtimeClasspath
exclude '**/*.properties*'
exclude '**/*testng*.jar'
exclude '**/*powermock*.jar'
Expand Down
4 changes: 2 additions & 2 deletions docs/cn/instructions/eventmesh-runtime-quickstart.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
```
建议使用64位操作系统,建议使用Linux / Unix;
64位JDK 1.8+;
Gradle至少为5.6, 推荐 5.6.*
Gradle至少为7.0, 推荐 7.0.*
```

### 1.2 下载源码
Expand All @@ -19,7 +19,7 @@ Gradle至少为5.6, 推荐 5.6.*

```$ xslt
unzip EventMesh-master.zip
cd / *您的部署路径* /EventMesh-master/eventmesh-runtime
cd / *您的部署路径* /EventMesh-master
gradle clean dist tar -x test
```

Expand Down
6 changes: 3 additions & 3 deletions docs/en/instructions/eventmesh-runtime-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
```
64bit OS, Linux/Unix is recommended;
64bit JDK 1.8+;
Gradle at least 5.6, eg 5.6.*
Gradle at least 7.0, eg 7.0.*
```

### 1.2 download sources
Expand All @@ -19,8 +19,8 @@ You will get **EventMesh-master.zip**

```$xslt
unzip EventMesh-master.zip
cd /*YOUR DEPLOY PATH*/EventMesh-master/eventmesh-runtime
gradle clean tar -x test
cd /*YOUR DEPLOY PATH*/EventMesh-master
gradle clean dist tar -x test
```

You will get **EventMesh_1.2.0.tar.gz** in directory /* YOUR DEPLOY PATH */EventMesh-master/build
Expand Down
2 changes: 1 addition & 1 deletion docs/en/instructions/eventmesh-store-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ You will get **DefiBus-master.zip**

### build sources

The eventmesh-store takes DeFiBus for example at the follwing parts, because eventmesh depends on defibus as store layer
The eventmesh-store takes DeFiBus for example at the following parts, because eventmesh depends on defibus as store layer
by default, other implements such as Rocketmq etc. is coming soon.

```
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
jdk=1.8
snapshot=false
group=org.apache.eventmesh
version=
version=1.2.0-SNAPSHOT
#last eight bits of public key
signing.keyId=
#passphrase for key pairs
Expand Down

0 comments on commit da86a35

Please sign in to comment.