Added spring-boot-starter-data-neo4j module.
Fixes gh-631
This commit is contained in:
@@ -77,6 +77,7 @@
|
||||
<mockito.version>1.9.5</mockito.version>
|
||||
<mongodb.version>2.11.4</mongodb.version>
|
||||
<mysql.version>5.1.30</mysql.version>
|
||||
<neo4j.version>2.0.2</neo4j.version>
|
||||
<reactor.version>1.0.1.RELEASE</reactor.version>
|
||||
<servlet-api.version>3.0.1</servlet-api.version>
|
||||
<slf4j.version>1.7.7</slf4j.version>
|
||||
@@ -85,7 +86,7 @@
|
||||
<spring.version>4.0.3.RELEASE</spring.version>
|
||||
<spring-integration.version>3.0.2.RELEASE</spring-integration.version>
|
||||
<spring-batch.version>2.2.6.RELEASE</spring-batch.version>
|
||||
<spring-data-couchbase.version>1.0.0.RELEASE</spring-data-couchbase.version>
|
||||
<spring-data-couchbase.version>1.0.0.RELEASE</spring-data-couchbase.version>
|
||||
<spring-data-redis.version>1.1.1.RELEASE</spring-data-redis.version>
|
||||
<spring-data-releasetrain.version>Codd-SR2</spring-data-releasetrain.version>
|
||||
<spring-hateoas.version>0.9.0.RELEASE</spring-hateoas.version>
|
||||
@@ -355,6 +356,11 @@
|
||||
<artifactId>mongo-java-driver</artifactId>
|
||||
<version>${mongodb.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.neo4j</groupId>
|
||||
<artifactId>neo4j</artifactId>
|
||||
<version>${neo4j.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.projectreactor</groupId>
|
||||
<artifactId>reactor-core</artifactId>
|
||||
|
||||
@@ -44,5 +44,6 @@
|
||||
<module>spring-boot-starter-web</module>
|
||||
<module>spring-boot-starter-websocket</module>
|
||||
<module>spring-boot-starter-data-rest</module>
|
||||
<module>spring-boot-starter-data-neo4j</module>
|
||||
</modules>
|
||||
</project>
|
||||
|
||||
35
spring-boot-starters/spring-boot-starter-data-neo4j/pom.xml
Normal file
35
spring-boot-starters/spring-boot-starter-data-neo4j/pom.xml
Normal file
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starters</artifactId>
|
||||
<version>1.1.0.BUILD-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>spring-boot-starter-data-neo4j</artifactId>
|
||||
<name>Spring Boot Data Neo4j Starter</name>
|
||||
<description>Spring Boot Data Neo4j Starter</description>
|
||||
<url>http://projects.spring.io/spring-boot/</url>
|
||||
<organization>
|
||||
<name>Pivotal Software, Inc.</name>
|
||||
<url>http://www.spring.io</url>
|
||||
</organization>
|
||||
<properties>
|
||||
<main.basedir>${basedir}/../..</main.basedir>
|
||||
</properties>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<artifactId>spring-boot-starter</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.neo4j</groupId>
|
||||
<artifactId>neo4j</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.data</groupId>
|
||||
<artifactId>spring-data-neo4j</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
provides: spring-data-neo4j,neo4j
|
||||
@@ -86,6 +86,11 @@
|
||||
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
||||
<version>${spring-boot.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-data-neo4j</artifactId>
|
||||
<version>${spring-boot.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-data-rest</artifactId>
|
||||
|
||||
Reference in New Issue
Block a user