From 5ffff41fc9dbb9f57b02a28381acc1caac7fe4af Mon Sep 17 00:00:00 2001 From: Matthew Adams Date: Tue, 26 Nov 2013 12:29:43 -0600 Subject: [PATCH 1/2] updated readme --- readme.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index e2cc10081..fd230f805 100644 --- a/readme.md +++ b/readme.md @@ -2,6 +2,19 @@ Spring Data Cassandra ===================== This is a Spring Data subproject for Cassandra that uses the binary CQL3 protocol via -the official DataStax 1.x Java driver (https://github.com/datastax/java-driver). +the official DataStax 1.x Java driver (https://github.com/datastax/java-driver) against Cassandra 1.2. Supports native CQL3 queries in Spring Repositories. + +Cloning +------- +When cloning this repo, it's a good idea to also clone two others from Spring Data that this project depends on. Assuming your current working directory is the root of this repository, issue the following commands: + + cd .. + git clone git@github.com:spring-projects/spring-data-build.git + git clone git@github.com:spring-projects/spring-data-commons.git + + +Building +-------- +This is a standard Maven multimodule project. Just issue the command `mvn clean install` from the repo root. \ No newline at end of file From d6b5c0b227a0118e9fec55e3d55882c6301b5a9f Mon Sep 17 00:00:00 2001 From: Alex Shvid Date: Tue, 26 Nov 2013 12:56:59 -0800 Subject: [PATCH 2/2] changed links to spring-data-build.git and spring-data-commons.git projects --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index fd230f805..cf950a1f9 100644 --- a/readme.md +++ b/readme.md @@ -11,10 +11,10 @@ Cloning When cloning this repo, it's a good idea to also clone two others from Spring Data that this project depends on. Assuming your current working directory is the root of this repository, issue the following commands: cd .. - git clone git@github.com:spring-projects/spring-data-build.git - git clone git@github.com:spring-projects/spring-data-commons.git + git clone https://github.com/spring-projects/spring-data-build.git + git clone https://github.com/spring-projects/spring-data-commons.git Building -------- -This is a standard Maven multimodule project. Just issue the command `mvn clean install` from the repo root. \ No newline at end of file +This is a standard Maven multimodule project. Just issue the command `mvn clean install` from the repo root.