From a3b82cfbdf7ade0d2373dcfbe0d7f025f968965b Mon Sep 17 00:00:00 2001 From: Luanne Misquitta Date: Tue, 19 Jan 2016 11:46:00 +0530 Subject: [PATCH] DATAGRAPH-765 - Documentation updates. --- src/main/asciidoc/index.adoc | 2 +- src/main/asciidoc/reference/setup.adoc | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) 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.