Browse Source

Fix build failure

More change to use the http Neo4j driver

See https://github.com/neo4j/neo4j-java-driver/issues/380

Closes gh-9499
pull/9508/head
Stephane Nicoll 9 years ago
parent
commit
c5d44cdae4
  1. 5
      spring-boot-test-autoconfigure/pom.xml
  2. 5
      spring-boot-test-autoconfigure/src/test/resources/application.properties

5
spring-boot-test-autoconfigure/pom.xml

@ -202,6 +202,11 @@ @@ -202,6 +202,11 @@
<artifactId>mongodb-driver-reactivestreams</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-ogm-http-driver</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.skyscreamer</groupId>
<artifactId>jsonassert</artifactId>

5
spring-boot-test-autoconfigure/src/test/resources/application.properties

@ -0,0 +1,5 @@ @@ -0,0 +1,5 @@
#
# This is a temporary override until the Neo4j bolt driver stops validating
# the connection on startup, see https://github.com/neo4j/neo4j-java-driver/issues/380
#
spring.data.neo4j.uri=http://localhost:8989
Loading…
Cancel
Save