diff --git a/README.md b/README.md
index 57311f4b..299a9f12 100644
--- a/README.md
+++ b/README.md
@@ -26,15 +26,23 @@ For those in a hurry:
org.springframework.data
spring-data-gemfire
- 1.1.0.BUILD-SNAPSHOT
+ ${version}
+
spring-maven-snapshot
true
Springframework Maven SNAPSHOT Repository
http://maven.springframework.org/snapshot
+
+
+
+ spring-maven-milestone
+ Springframework Maven Milestone Repository
+ http://maven.springframework.org/milestone
+
~~~~~
* Gradle:
@@ -42,13 +50,19 @@ For those in a hurry:
~~~~~ groovy
repositories {
mavenRepo name: "spring-snapshot", urls: "http://maven.springframework.org/snapshot"
+ mavenRepo name: "spring-milestone", urls: "http://maven.springframework.org/milestone"
}
dependencies {
- compile "org.springframework.data:spring-data-gemfire:1.1.0.BUILD-SNAPSHOT"
+ compile "org.springframework.data:spring-data-gemfire:${version}"
}
~~~~~
+Latest GA release is _1.0.1.RELEASE_
+Latest milestone release is _1.1.0.RC1_
+Latest nightly build is _1.1.0.BUILD-SNAPSHOT_
+
+
* Configure a GemFire cache and Region (replicated, partitioned, client and so on):
~~~~~ xml