diff --git a/spring-data-neo4j/README.md b/spring-data-neo4j/README.md
new file mode 100644
index 0000000000..89eae99f05
--- /dev/null
+++ b/spring-data-neo4j/README.md
@@ -0,0 +1,15 @@
+## Spring Data Redis
+
+### Relevant Articles:
+- [Introduction to Spring Data Redis](http://www.baeldung.com/spring-data-redis-tutorial)
+
+### Build the Project with Tests Running
+```
+mvn clean install
+```
+
+### Run Tests Directly
+```
+mvn test
+```
+
diff --git a/spring-data-neo4j/pom.xml b/spring-data-neo4j/pom.xml
new file mode 100644
index 0000000000..5d04e0c3b4
--- /dev/null
+++ b/spring-data-neo4j/pom.xml
@@ -0,0 +1,69 @@
+
+
+ 4.0.0
+ com.baeldung
+ spring-data-neo4j
+ 1.0
+ jar
+
+
+ UTF-8
+ 4.2.5.RELEASE
+ 4.1.1.RELEASE
+ 0.8.0
+
+
+
+
+ org.springframework.data
+ spring-data-neo4j
+ ${spring-data-neo4j}
+
+
+
+ cglib
+ cglib-nodep
+ 2.2
+
+
+
+ log4j
+ log4j
+ 1.2.16
+
+
+
+ org.springframework
+ spring-core
+ ${spring.version}
+
+
+
+ org.springframework
+ spring-context
+ ${spring.version}
+
+
+
+ junit
+ junit
+ 4.12
+ test
+
+
+
+ org.springframework
+ spring-test
+ ${spring.version}
+ test
+
+
+
+ com.lordofthejars
+ nosqlunit-redis
+ ${nosqlunit.version}
+
+
+
+
diff --git a/spring-data-neo4j/src/main/resources/logback.xml b/spring-data-neo4j/src/main/resources/logback.xml
new file mode 100644
index 0000000000..215eeede64
--- /dev/null
+++ b/spring-data-neo4j/src/main/resources/logback.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ web - %date [%thread] %-5level %logger{36} - %message%n
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-data-neo4j/src/main/resources/test.png b/spring-data-neo4j/src/main/resources/test.png
new file mode 100644
index 0000000000..c3b5e80276
Binary files /dev/null and b/spring-data-neo4j/src/main/resources/test.png differ