From fffb53ccf538e9b9e38bf1171a4a3a0a4bd29e5d Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 7 Apr 2017 10:04:41 +0200 Subject: [PATCH] Fix neo4j embedded documentation The neo4j embedded driver no longer embeds the neo4j kernel and users are expected to add that dependency manually. We don't provide dependency management for any of them so this commit updates the documentation to refers to the official documentation. Closes gh-8567 --- .../src/main/asciidoc/spring-boot-features.adoc | 7 +++++++ .../spring-boot-sample-data-neo4j/README.adoc | 13 +++---------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index c981cef150..491b724170 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -3513,6 +3513,13 @@ persistence for the embedded mode: spring.data.neo4j.uri=file://var/tmp/graph.db ---- +[NOTE] +==== +The Neo4j OGM embedded driver does not provide the Neo4j kernel. Users are expected to +provide this dependency manually, see +http://neo4j.com/docs/ogm-manual/current/reference/#reference:getting-started[the documentation] +for more details. +==== [[boot-features-neo4j-ogm-session]] diff --git a/spring-boot-samples/spring-boot-sample-data-neo4j/README.adoc b/spring-boot-samples/spring-boot-sample-data-neo4j/README.adoc index 96c1922e71..60c402ac57 100644 --- a/spring-boot-samples/spring-boot-sample-data-neo4j/README.adoc +++ b/spring-boot-samples/spring-boot-sample-data-neo4j/README.adoc @@ -11,13 +11,6 @@ spring.data.neo4j.password=secret You can also locally add the embedded driver to embed Neo4j instead. Note that Spring Boot does not provide dependency management for that GPL-licensed -library: - -``` - - org.neo4j - neo4j-ogm-embedded-driver - ${neo4j-ogm.version} - -``` - +library, see +http://docs.spring.io/spring-data/neo4j/docs/4.2.x/reference/html/#reference.getting_started.driver[the official documentation] +for more details.