Skip to content

Commit 80a7584

Browse files
author
Achim Brandt
committed
changed version number
1 parent 474efd1 commit 80a7584

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ To add the driver to your project with maven, add the following code to your pom
2121
<dependency>
2222
<groupId>com.arangodb</groupId>
2323
<artifactId>arangodb-java-driver</artifactId>
24-
<version>[2.4.2-SNAPSHOT,2.4.2]</version>
24+
<version>[2.5.3-SNAPSHOT,2.5.3]</version>
2525
</dependency>
2626
....
2727
</dependencies>
2828
```
2929

30-
If you want to test with a snapshot version (e.g. 2.4.2-SNAPSHOT), add the staging repository of oss.sonatype.org to your pom.xml:
30+
If you want to test with a snapshot version (e.g. 2.5.3-SNAPSHOT), add the staging repository of oss.sonatype.org to your pom.xml:
3131

3232
```XML
3333
<repositories>
@@ -288,7 +288,7 @@ A graph consists of vertices and edges (stored in collections). Which collection
288288
// and add one or more collections
289289
from.add("myCollection1");
290290
from.add("myCollection2");
291-
edgeDefinition.setFrom(from)
291+
edgeDefinition.setFrom(from);
292292

293293
// repeat this for the collections where an edge is going into
294294
List<String> to = new ArrayList<String>();

0 commit comments

Comments
 (0)