Skip to content

Commit 3e2d409

Browse files
authored
Update README
1 parent e881558 commit 3e2d409

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

README.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,30 @@
22

33
Java client library for accessing the HTTP API of [Typesense](https://typesense.org) search engine.
44

5-
Note: This package is still under development. Some existing APIs might change or new APIs might be available in the future.
6-
75
## Installation
86

9-
Download the JAR file from the [releases](https://github.com/typesense/typesense-java/releases) section of this repository and add it to your project.
7+
The client is available on Maven Central.
8+
9+
```
10+
<dependency>
11+
<groupId>org.typesense</groupId>
12+
<artifactId>typesense-java</artifactId>
13+
<version>0.0.3</version>
14+
</dependency>
15+
```
16+
17+
You can also download the JAR file from the [releases](https://github.com/typesense/typesense-java/releases) section of this repository and add it to your project.
18+
19+
## Usage
20+
21+
### Import the packages
1022

1123
```java
1224
import org.typesense.api.*;
1325
import org.typesense.model.*;
1426
import org.typesense.resources.*;
1527
```
1628

17-
## Usage
18-
1929
### Create a new client
2030
```java
2131
ArrayList<Node> nodes = new ArrayList<>();

0 commit comments

Comments
 (0)