Skip to content

Commit

Permalink
+ update
Browse files Browse the repository at this point in the history
  • Loading branch information
Costin Leau committed Dec 13, 2011
1 parent 311c398 commit a03fe6a
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions README.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -26,29 +26,43 @@ For those in a hurry:
<dependency> <dependency>
<groupId>org.springframework.data</groupId> <groupId>org.springframework.data</groupId>
<artifactId>spring-data-gemfire</artifactId> <artifactId>spring-data-gemfire</artifactId>
<version>1.1.0.BUILD-SNAPSHOT</version> <version>${version}</version>
</dependency> </dependency>


<!-- used for nightly builds -->
<repository> <repository>
<id>spring-maven-snapshot</id> <id>spring-maven-snapshot</id>
<snapshots><enabled>true</enabled></snapshots> <snapshots><enabled>true</enabled></snapshots>
<name>Springframework Maven SNAPSHOT Repository</name> <name>Springframework Maven SNAPSHOT Repository</name>
<url>http://maven.springframework.org/snapshot</url> <url>http://maven.springframework.org/snapshot</url>
</repository> </repository>

<!-- used for milestone/rc releases -->
<repository>
<id>spring-maven-milestone</id>
<name>Springframework Maven Milestone Repository</name>
<url>http://maven.springframework.org/milestone</url>
</repository>
~~~~~ ~~~~~


* Gradle: * Gradle:


~~~~~ groovy ~~~~~ groovy
repositories { repositories {
mavenRepo name: "spring-snapshot", urls: "http://maven.springframework.org/snapshot" mavenRepo name: "spring-snapshot", urls: "http://maven.springframework.org/snapshot"
mavenRepo name: "spring-milestone", urls: "http://maven.springframework.org/milestone"
} }
dependencies { 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): * Configure a GemFire cache and Region (replicated, partitioned, client and so on):


~~~~~ xml ~~~~~ xml
Expand Down

0 comments on commit a03fe6a

Please sign in to comment.