Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreThis project provides a framework for building a Spring Boot project to quickly implement a service broker for Cloud Foundry.
NOTE New releases of this project are being developed with the name Spring Cloud Open Service Broker.
The recommended way to get started using Spring Cloud Open Service Broker in your project is with a dependency management system. One of the snippets below can be copied and pasted into your build.
With Maven:
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-cloudfoundry-service-broker</artifactId>
<version>${springCloudServiceBrokerVersion}</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-cloudfoundry-service-broker</artifactId>
<version>${springCloudServiceBrokerVersion}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
</dependencies>
With Gradle:
dependencies {
compile("org.springframework.cloud:spring-cloud-cloudfoundry-service-broker:1.0.2.RELEASE")
testCompile(group: "org.springframework.cloud", name: "spring-cloud-cloudfoundry-service-broker", version: "1.0.2.RELEASE", classifier: "tests")
}```
Bootstrap your application with Spring Initializr.