#131 - Added Spring Data Neo4j example.

Original pull requests: #129, #130.
This commit is contained in:
Luanne Misquitta
2015-09-03 16:41:27 +05:30
committed by Oliver Gierke
parent 0c1bee04b3
commit f90bed38e2
10 changed files with 425 additions and 0 deletions

25
neo4j/pom.xml Normal file
View File

@@ -0,0 +1,25 @@
<?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>
<artifactId>spring-data-neo4j-examples</artifactId>
<packaging>pom</packaging>
<parent>
<groupId>org.springframework.data.examples</groupId>
<artifactId>spring-data-examples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</parent>
<name>Spring Data Neo4j 4 - Examples</name>
<description>Sample projects for Spring Data Neo4j 4</description>
<modules>
<module>example</module>
</modules>
</project>