Spring Cloud Services Starters are a curated set of dependencies for use with Spring Cloud Services in a Pivotal Cloud Foundry environment.
Easily take advantage of the various services by including the BOM and corresponding starter. See the example Maven POM and Gradle build files below.
-
spring-cloud-services-starter-config-client
-
spring-cloud-services-starter-service-registry
The release artifacts are available from Maven Central. You may also build and install the starter POMs to your local Maven repository:
./gradlew clean build publishToMavenLocal
Include the BOM and starter dependencies in your project using Maven or Gradle.
pom.xml
<dependencies>
<dependency>
<groupId>io.pivotal.spring.cloud</groupId>
<artifactId>spring-cloud-services-starter-config-client</artifactId>
</dependency>
<dependency>
<groupId>io.pivotal.spring.cloud</groupId>
<artifactId>spring-cloud-services-starter-service-registry</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.pivotal.spring.cloud</groupId>
<artifactId>spring-cloud-services-dependencies</artifactId>
<version>${spring-cloud-services.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>build.gradle
dependencyManagement {
imports {
mavenBom "io.pivotal.spring.cloud:spring-cloud-services-dependencies:${springCloudServicesVersion}"
}
}
dependencies {
implementation("io.pivotal.spring.cloud:spring-cloud-services-starter-config-client")
implementation("io.pivotal.spring.cloud:spring-cloud-services-starter-service-registry")
}| SCS Starters | Spring Cloud | Spring Boot | JDK | Notes |
|---|---|---|---|---|
4.4.x |
2025.1.x |
4.0.x |
17 |
|
4.3.x |
2025.0.x |
3.5.x |
17 |
|
4.2.x |
2024.0.x |
3.4.x |
17 |
|
4.1.x |
2023.0.x |
3.2.x & 3.3.x |
17 |
|
4.0.x |
2022.0.x |
3.0.x & 3.1.x |
17 |
|
3.5.x |
2021.0.x |
2.7.x |
8 |
|
3.4.x |
2021.0.x |
2.6.x |
8 |
|
3.3.x |
2020.0.x |
2.5.x |
8 |
Spring Cloud Services Starters is Open Source software released under the Apache 2.0 license.