#19 - Add example for Spring Data Cassandra.

Shows java-config as well as Repository configuration.
This commit is contained in:
Thomas Darimont
2014-10-07 20:28:41 +02:00
parent eeb0485cf9
commit 4841bbdc11
9 changed files with 289 additions and 0 deletions

17
cassandra/example/pom.xml Normal file
View File

@@ -0,0 +1,17 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-data-cassandra-example</artifactId>
<parent>
<groupId>org.springframework.data.examples</groupId>
<artifactId>spring-data-cassandra-examples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Spring Data Cassandra - Example</name>
<description>Small sample project showing the usage of Spring Data Cassandra.</description>
</project>