I am very new to Neo4j and I want to get started with an embedded Neo4j in a Java Application. I try to create an HelloWorld Application like the following: https://neo4j.com/docs/java-reference/current/#tutorials-java-embedded
You can find the source code here: https://github.com/neo4j/neo4j/blob/3.1/manual/embedded-examples/src/main/java/org/neo4j/examples/EmbeddedNeo4j.java
I created a new maven project and added org.neo4j:neo4j 3.0.3 as a dependency. Unfortunately I caot import "org.neo4j.graphdb.factory.GraphDatabaseFactory", all other imports seem to be ok. Now I figured out, that the import is working for version "3.1.0-SNAPSHOT" of the neo4j dependency. Because I want to use a stable version, I want to achieve this with version 3.0.3 as well, but I caot find something that this factory is depending on this version or how you should do it at version 3.0.3. Can somebody provide information about this?
