I am new in OrientDB. I have several questions.
1) Where i can find list of current stable version of *.jar libraries to acess OrientDB instance (version 2.0.3). I use java 8 .
I connect to Orient DB from Java Spring. In pom.xml I write such lines:
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-core</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orient-commons</artifactId>
<version>2.0-M1</version>
</dependency>
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-enterprise</artifactId>
<version>2.0.2</version>
</dependency>
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-client</artifactId>
<version>2.0.2</version>
</dependency>
And everything is working, unless I add library to work with instance as with graph db
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-graphdb</artifactId>
<version>2.0.4</version>
</dependency>
If I add "orientdb-graphdb" reference, my code works in wrong way, actually in one my controller where object of "org.codehaus.jackson.node.ObjectNode" is returned, this controller fails. it seems that some error occurs during converting of ObjectNode.
2) I can't sort out how to use both Document and Graph model of OrientDB in one instance. Which *.jar file to use and of which versions.
I think, the course of my troubles is wrong combination of jar files of wrong versions.