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
+22-7Lines changed: 22 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,9 +19,27 @@ To start using Weaviate Java Client add the dependency to `pom.xml`:
19
19
20
20
### Uber JAR🫙
21
21
22
-
If you're building a uber-JAR with something like `maven-assembly-plugin`, use a shaded version with classifier `all`.
22
+
If you're building a uber-JAR with something like `maven-assembly-plugin`, use a shaded version with classifier `all`.
23
23
This ensures that all dynamically-loaded dependecies of `io.grpc` are resolved correctly.
24
24
25
+
### SNAPSHOT releases
26
+
27
+
The latest development version of `client6` is released after every merged pull request. Set the version to `6.0.0-SNAPSHOT` to include it in your project.
28
+
Please be mindful of the fact that this is not a stable release and breaking changes may be introduced.
29
+
30
+
Snapshot releases overwrite each other, so no two releases are alike. If you find a bug in one of the `SNAPSHOT` versions that you'd like to report, please include the output of `Debug.printBuildInfo()` in the ticket's description.
31
+
32
+
```java
33
+
importio.weaviate.client6.v1.internal.Debug;
34
+
35
+
publicclassApp {
36
+
publicstaticvoidmain(String[] args) {
37
+
Debug.printBuildInfo();
38
+
39
+
// ...the rest of your application code...
40
+
}
41
+
}
42
+
```
25
43
26
44
### Gson and reflective access to internal JDK classes
0 commit comments