File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,13 +21,13 @@ To add the driver to your project with maven, add the following code to your pom
21
21
<dependency >
22
22
<groupId >com.arangodb</groupId >
23
23
<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 >
25
25
</dependency >
26
26
....
27
27
</dependencies >
28
28
```
29
29
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:
31
31
32
32
``` XML
33
33
<repositories >
@@ -288,7 +288,7 @@ A graph consists of vertices and edges (stored in collections). Which collection
288
288
// and add one or more collections
289
289
from. add(" myCollection1" );
290
290
from. add(" myCollection2" );
291
- edgeDefinition. setFrom(from)
291
+ edgeDefinition. setFrom(from);
292
292
293
293
// repeat this for the collections where an edge is going into
294
294
List<String > to = new ArrayList<String > ();
You can’t perform that action at this time.
0 commit comments