瀏覽代碼

Update proto for minor change (#290)

Signed-off-by: groot <yihua.mo@zilliz.com>
groot 3 年之前
父節點
當前提交
2b67821757
共有 2 個文件被更改,包括 18 次插入10 次删除
  1. 17 9
      DEVELOPMENT.md
  2. 1 1
      src/main/milvus-proto

+ 17 - 9
DEVELOPMENT.md

@@ -7,26 +7,34 @@ This document will help to setup your development environment and running tests
     -   Java 8 or higher
     -   Apache Maven
 
-## Building Milvus java SDK
-fetch proto files from submodule project
+### Clone the code
+
 ```shell
-  git submodule update --init
+$ git clone --recursive git@github.com:milvus-io/milvus-sdk-java.git
 ```
 
-call the following command to generate protobuf related code
+Milvus proto files are managed by a submodule project under the directory: src/milvus-proto
+Fetch Milvus proto files by the following command(If the previous clone is not with submodules)
+```shell
+$ git submodule update --init
+```
+
+## Building Milvus java SDK
+
+Call the following command to generate protobuf related code
 ```shell
-  mvn install
+$  mvn install
 ```
 
 ## Update Milvus proto files
-Milvus proto files are managed by a submodule project under the directory: src/main/milvus-proto
+Milvus proto files are managed by a submodule project under the directory: src/milvus-proto
 Before developing new interfaces, you need to get the latest proto files by the following command:
 ```shell
-  git submodule update --remote
+$  git submodule update --remote
 ```
 
 ## Building Milvus
-see detailed information at:
+See detailed information at:
 https://github.com/milvus-io/milvus/blob/master/DEVELOPMENT.md
 
 ## Start a Milvus cluster
@@ -34,7 +42,7 @@ You need to start a latest milvus cluster to test the java SDK, see instructions
 https://milvus.io/docs/v2.0.0/install_standalone-docker.md
 
 ### Unit Tests
-All unit test is under director src/test, TBD
+All unit test is under director src/test
 
 ## GitHub Flow
 Milvus SDK repo follows the same git work flow as milvus main repo, see

+ 1 - 1
src/main/milvus-proto

@@ -1 +1 @@
-Subproject commit f56828744189e6b7b71d104ff2d8b37a13e089d7
+Subproject commit 11a5d5da9b1854b047b3718c8c68ceec26cd51f3