To use Spring Boot for Apache Geode, declare the spring-geode-starter
on your application classpath:
Maven.
<dependencies> <dependency> <groupId>org.springframework.geode</groupId> <artifactId>spring-geode-starter</artifactId> <version>1.1.0.M3</version> </dependency> </dependencies
Gradle.
dependencies {
compile 'org.springframework.geode:spring-geode-starter:1.1.0.M3'
}
![]() | Tip |
---|---|
To use Pivotal GemFire in place of Apache Geode, simply change the |
Since you are using a Milestone version, you need to add the Spring Milestone Maven Repository.
If you are using Maven, include the following repository
declaration in your pom.xml
:
Maven.
<repositories> <repository> <id>spring-milestone</id> <url>https://repo.spring.io/libs-milestone</url> </repository> </repositories>
If you are using Gradle, include the following repository
declaration in your build.gradle
:
Gradle.
repositories { maven { url: 'https://repo.spring.io/libs-milestone' } }