We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b29cb7 commit da6c955Copy full SHA for da6c955
docs/v7_detailed_changes.md
@@ -1,5 +1,32 @@
1
# Version 7.0: detailed changes
2
3
+## Maven Setup
4
+
5
+In your `pom.xml`, set the snapshots repository:
6
7
+```
8
+<repositories>
9
+ <repository>
10
+ <id>snapshots</id>
11
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
12
+ <snapshots>
13
+ <enabled>true</enabled>
14
+ </snapshots>
15
+ </repository>
16
+</repositories>
17
18
19
+and include the dependency:
20
21
22
+<dependencies>
23
+ <dependency>
24
+ <groupId>com.arangodb</groupId>
25
+ <artifactId>arangodb-java-driver</artifactId>
26
+ <version>7.0.0-SNAPSHOT</version>
27
+ </dependency>
28
29
30
31
## HTTP client
32
0 commit comments