Skip to content

Commit da6c955

Browse files
committed
doc: mvn setup
1 parent 6b29cb7 commit da6c955

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

docs/v7_detailed_changes.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Version 7.0: detailed changes
22

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+
<dependencies>
29+
```
330

431
## HTTP client
532

0 commit comments

Comments
 (0)