diff --git a/README.md b/README.md index 1201d5f2..ec1fff65 100644 --- a/README.md +++ b/README.md @@ -18,49 +18,59 @@ Quick Start For those in a hurry: -* Download the jar through Maven: +* Download the jar through +Maven: +~~~~~ xml + + org.springframework.data + spring-data-gemfire + 1.1.0.BUILD-SNAPSHOT + - - org.springframework.data.gemfire - spring-gemfire - 1.1.0.BUILD-SNAPSHOT - + + spring-maven-snapshot + true + Springframework Maven SNAPSHOT Repository + http://maven.springframework.org/snapshot + +~~~~~ +Gradle: +~~~~~ groovy +repositories { + mavenRepo name: "spring-snapshot", urls: "http://maven.springframework.org/snapshot" +} - - spring-maven-snapshot - true - Springframework Maven SNAPSHOT Repository - http://maven.springframework.org/snapshot - - +dependencies { + compile "org.springframework.data:spring-data-gemfire:1.1.0.BUILD-SNAPSHOT" +} +~~~~~ * Configure a GemFire cache and Region (replicated, partitioned, client and so on): +~~~~~ xml + - - - - - - - - + + + + + +~~~~~ * Use the Region to read/write data: - - region.put(Long.valueOf(1), new Person("Jane", "Smith")); - +~~~~~ java +region.put(Long.valueOf(1), new Person("Jane", "Smith")); +~~~~~ * Or/And `GemFireTemplate` to interact with GemFire: - - template.query("person = 1"); - - +~~~~~ java +template.query("person = 1"); +~~~~~ Contributing to Spring GemFire ------------------------------