remove bazel support from document (#94)

Signed-off-by: birdstorm <samuelwyf@hotmail.com>
This commit is contained in:
birdstorm 2020-10-26 10:38:57 +08:00 committed by GitHub
parent 2ffd861170
commit 5f3d9f5aa4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 21 deletions

View File

@ -1,4 +1,4 @@
## Ti-Client in Java [Under Construction]
## TiKV JAVA Client
A Java client for [TiDB](https://github.com/pingcap/tidb)/[TiKV](https://github.com/tikv/tikv).
It is supposed to:
@ -9,25 +9,6 @@ It is supposed to:
## How to build
### Gradle
Alternatively, you can build `tikv-client-java` with gradle.
The following command will build the project.
```
gradle init
gradle clean build -x test
```
To make a jar with dependencies
```
gradle clean shadowJar -x test
```
The jar can be found in `./build/libs/`
### Maven
The alternative way to build a usable jar for testing will be
@ -75,7 +56,7 @@ After building, add following lines into your `pom.xml` if you are using Maven
<dependency>
<groupId>org.tikv</groupId>
<artifactId>tikv-client-java</artifactId>
<version>2.0-SNAPSHOT</version>
<version>3.0.0</version>
</dependency>
```