6
6
2.7: [ ![ Build Status] ( https://secure.travis-ci.org/arangodb/arangodb-java-driver.svg?branch=2.7 )] ( https://travis-ci.org/arangodb/arangodb-java-driver )
7
7
3.0: [ ![ Build Status] ( https://secure.travis-ci.org/arangodb/arangodb-java-driver.svg?branch=3.0 )] ( https://travis-ci.org/arangodb/arangodb-java-driver )
8
8
3.1: [ ![ Build Status] ( https://secure.travis-ci.org/arangodb/arangodb-java-driver.svg?branch=3.1 )] ( https://travis-ci.org/arangodb/arangodb-java-driver )
9
- 4.0 : [ ![ Build Status] ( https://secure.travis-ci.org/arangodb/arangodb-java-driver.svg?branch=4.0 )] ( https://travis-ci.org/arangodb/arangodb-java-driver )
9
+ 4.1 : [ ![ Build Status] ( https://secure.travis-ci.org/arangodb/arangodb-java-driver.svg?branch=4.1 )] ( https://travis-ci.org/arangodb/arangodb-java-driver )
10
10
master: [ ![ Build Status] ( https://secure.travis-ci.org/arangodb/arangodb-java-driver.svg?branch=master )] ( https://travis-ci.org/arangodb/arangodb-java-driver )
11
11
12
12
## Supported versions
13
13
14
14
<table >
15
15
<tr ><th >arangodb-java-driver</th ><th >ArangoDB</th ><th >network protocol</th ><th >Java version</th ></tr >
16
- <tr ><td >4.0.x</td ><td >3.1.x</td ><td >VelocyStream</td ><td >1.6+</td ></tr >
16
+ <tr ><td >4.1.x</td ><td >3.1.x</td ><td >VelocyStream</td ><td >1.6+</td ></tr >
17
+ \< tr><td >4.0.0</td ><td >3.1.0-RC1 to 3.1.0-RC3</td ><td >VelocyStream</td ><td >1.6+</td ></tr >
17
18
<tr ><td >3.1.x</td ><td >3.1.x</td ><td >HTTP</td ><td >1.6+</td ></tr >
18
19
<tr ><td >3.0.x</td ><td >3.0.x</td ><td >HTTP</td ><td >1.6+</td ></tr >
19
20
<tr ><td >2.7.4</td ><td >2.7.x and 2.8.x</td ><td >HTTP</td ><td >1.6+</td ></tr >
20
21
</table >
21
22
22
- ##Server Configuration
23
-
24
- To use the driver version 4.0.0 and above, you need to run ArangoDB server with an endpoint using VelocyStream protocol. (see [ documentation] ( https://docs.arangodb.com/current/Manual/Administration/Configuration/Endpoint.html#server-endpoints ) )
25
-
26
- ```
27
- unix> ./arangod --server.endpoint vpp+tcp://127.0.0.1:8529
28
- --server.endpoint vpp+ssl://127.0.0.1:8530
29
- --ssl.keyfile server.pem /tmp/vocbase
30
- ```
31
-
32
- Note: The web interface needs only endpoint tcp. If you want to use both, the driver and the web interface you have to use both endpoints.
33
-
34
- ```
35
- unix> ./arangod --server.endpoint vpp+tcp://127.0.0.1:8529
36
- --server.endpoint vpp+ssl://127.0.0.1:8530
37
- --server.endpoint tcp://127.0.0.1:8531
38
- --ssl.keyfile server.pem /tmp/vocbase
39
- ```
40
-
41
23
## Maven
42
24
43
25
To add the driver to your project with maven, add the following code to your pom.xml
@@ -49,7 +31,7 @@ ArangoDB 3.1.X
49
31
<dependency >
50
32
<groupId >com.arangodb</groupId >
51
33
<artifactId >arangodb-java-driver</artifactId >
52
- <version >4.0 .0</version >
34
+ <version >4.1 .0</version >
53
35
</dependency >
54
36
....
55
37
</dependencies >
0 commit comments