close

Spring Cloud - Cloud Foundry Service Broker

1.0.3.RELEASE

This 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.

Spring Boot Config

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")
}```
Spring Initializr

Quickstart Your Project

Bootstrap your application with Spring Initializr.

Documentation

Each Spring project has its own; it explains in great details how you can use project features and what you can achieve with them.
1.0.3.RELEASE CURRENT GA Reference Doc. API Doc.
1.0.4.BUILD-SNAPSHOT SNAPSHOT Reference Doc. API Doc.