We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6ff9ac commit 232c581Copy full SHA for 232c581
1 file changed
README.md
@@ -10,6 +10,17 @@ app which lets you interact with the Bring! servers.
10
## Usage
11
First you need to add the .jar to your classpath.
12
13
+If your project is managed by maven you can add the .jar the following way if (you have added the .jar to your /resource folder):
14
+```xml
15
+<dependency>
16
+ <groupId>com.janetschel</groupId>
17
+ <artifactId>bring-api</artifactId>
18
+ <version>1.0</version>
19
+ <scope>system</scope>
20
+ <systemPath>${project.basedir}/src/main/resources/bring-api-1.0.jar</systemPath>
21
+</dependency>
22
+```
23
+
24
After that you can use it like that:
25
26
```Java
0 commit comments