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
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 > ();
You can’t perform that action at this time.
0 commit comments