Browse Source

add README.md

zhiru 5 years ago
parent
commit
c620ab005e
1 changed files with 42 additions and 1 deletions
  1. 42 1
      README.md

+ 42 - 1
README.md

@@ -1 +1,42 @@
-# milvus-sdk-java
+# milvus-sdk-java
+
+[![Maven Central](https://img.shields.io/maven-central/v/io.milvus/milvus-sdk-java.svg)](https://search.maven.org/artifact/io.milvus/milvus-sdk-java/)
+
+Java SDK for Milvus distributed high-performance vector search engine. 
+If you want to contribute to this repo, please read our [contribution guidelines]().
+
+## Getting started
+
+### Dependency 
+
+Apache Maven
+```xml
+<dependency>
+    <groupId>io.milvus</groupId>
+    <artifactId>milvus-sdk-java</artifactId>
+    <version>0.1.0</version>
+</dependency>
+```
+
+Gradle/Grails 
+
+`compile 'io.milvus:milvus-sdk-java:0.1.0'`
+
+###Examples
+
+Please refer to [examples](https://github.com/milvus-io/milvus-sdk-java/tree/master/examples) folder
+
+###Documentation
+
+- [Javadoc](https://milvus-io.github.io/milvus-sdk-java/javadoc/index.html)
+- [Milvus doc](https://milvus.io/docs/en/userguide/install_milvus/)
+
+###Additional information
+
+- The Java source code is formatted using [google-java-format](https://github.com/google/google-java-format).
+
+
+
+
+
+