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
A Java [InvenTree](https://inventree.org/) ([GitHub](https://github.com/inventree/InvenTree)) api client.
4
4
5
+
## Usage
5
6
7
+
Simply include in your dependency pom like so:
6
8
7
-
https://github.com/inventree/inventree-python
9
+
```xml
10
+
<dependency>
11
+
<groupId>com.w3asel</groupId>
12
+
<artifactId>inventree-sdk-java</artifactId>
13
+
<version>0.18.317</version>
14
+
</dependency>
15
+
```
8
16
9
-
https://github.com/jellyfin/jellyfin-sdk-kotlin
17
+
The version number is a mix of the InvenTree release (0.18) and the schema version (317) with point releases after that when multiple client jars are released against the same schema.
Set up an [InvenTree dev environment](https://docs.inventree.org/en/stable/develop/devcontainer/).
14
22
15
23
```sh
16
-
invoke dev.setup --test
24
+
invoke dev.setup-test
17
25
invoke dev.server
18
26
```
19
27
20
-
## Generate Schema
28
+
Be sure to run `invoke update` when pulling updates into your dev environment.
29
+
30
+
### Generate Schema from InvenTree
31
+
32
+
You can either browse to http://localhost:8000/api-doc/ (or the corresponding path on your instance, browsable from the About InvenTree dialog), or from a dev environment run:
0 commit comments