diff --git a/README.md b/README.md index ec1fff65..9ae66835 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ For those in a hurry: * Download the jar through Maven: + ~~~~~ xml org.springframework.data @@ -37,6 +38,7 @@ Maven: ~~~~~ Gradle: + ~~~~~ groovy repositories { mavenRepo name: "spring-snapshot", urls: "http://maven.springframework.org/snapshot" @@ -48,6 +50,7 @@ dependencies { ~~~~~ * Configure a GemFire cache and Region (replicated, partitioned, client and so on): + ~~~~~ xml ~~~~~ + * Use the Region to read/write data: + ~~~~~ java region.put(Long.valueOf(1), new Person("Jane", "Smith")); ~~~~~ * Or/And `GemFireTemplate` to interact with GemFire: + ~~~~~ java template.query("person = 1"); ~~~~~ + Contributing to Spring GemFire ------------------------------