diff --git a/src/main/asciidoc/index.adoc b/src/main/asciidoc/index.adoc index 1f96ccb33..2bcb23e99 100644 --- a/src/main/asciidoc/index.adoc +++ b/src/main/asciidoc/index.adoc @@ -5,7 +5,7 @@ Michael Hunger; Oliver Gierke; Vince Bickers; Adam George; Luanne Misquitta; Mic :revnumber: {version} :revdate: {localdate} -Spring Data Neo4j Version 4.1 (October 2015) +Spring Data Neo4j Version 4.1 (January 2016) (C) 2010-2016 Graph Aware Ltd - Neo Technology, Inc. - Pivotal Software, Inc. diff --git a/src/main/asciidoc/reference/setup.adoc b/src/main/asciidoc/reference/setup.adoc index 163679734..1c4a1e04a 100644 --- a/src/main/asciidoc/reference/setup.adoc +++ b/src/main/asciidoc/reference/setup.adoc @@ -186,7 +186,7 @@ public Configuration getConfiguration() { config .driverConfiguration() .setDriverClassName - ("org.neo4j.ogm.drivers.embedded.driver.EmbeddedDriver") + ("org.neo4j.ogm.drivers.embedded.driver.EmbeddedDriver"); return config; } ---- @@ -269,8 +269,10 @@ _Note: Currently only Basic Authentication is supported by Neo4j, so the only Cr ---- -Please note: In SDN 4.1, the `InProcessServer` has been deprecated. This class was used to set up an in-memory Http server so that you could run your tests. This is no longer appropriate given the new Driver mechanism, and we recommend you configure an Embedded Driver for your integration tests. - +[NOTE] +==== +In SDN 4.1, the `InProcessServer` has been deprecated. This class was used to set up an in-memory Http server so that you could run your tests. This is no longer appropriate given the new Driver mechanism, and we recommend you configure an Embedded Driver for your integration tests. +==== === SessionFactory Bean The `SessionFactory` is needed by SDN to create instances of `org.neo4j.ogm.session.Session` as required.