You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,6 @@ Official Weaviate Java Client.
9
9
To start using Weaviate Java Client add the dependency to `pom.xml`:
10
10
11
11
```xml
12
-
13
12
<dependency>
14
13
<groupId>io.weaviate</groupId>
15
14
<artifactId>client6</artifactId>
@@ -19,9 +18,18 @@ To start using Weaviate Java Client add the dependency to `pom.xml`:
19
18
20
19
### Uber JAR🫙
21
20
22
-
If you're building a uber-JAR with something like `maven-assembly-plugin`, use a shaded version with classifier `all`.
21
+
If you're building an uber-JAR with something like `maven-assembly-plugin`, use a shaded version with classifier `all`.
23
22
This ensures that all dynamically-loaded dependecies of `io.grpc` are resolved correctly.
24
23
24
+
```xml
25
+
<dependency>
26
+
<groupId>io.weaviate</groupId>
27
+
<artifactId>client6</artifactId>
28
+
<version>6.0.0-beta4</version>
29
+
<classifier>all</classifier>
30
+
</dependency>
31
+
```
32
+
25
33
### SNAPSHOT releases
26
34
27
35
The latest development version of `client6` is released after every merged pull request. To include it in you project set the version to `6.0.0-SNAPSHOT` and [configure your `<repositories>` section accordingly](https://central.sonatype.org/publish/publish-portal-snapshots/#consuming-snapshot-releases-for-your-project).
0 commit comments