Data source: Spring Cloud Alibaba official Wiki
After Spring Boot 3.3.4#
| Spring Cloud Alibaba Version |
Spring Cloud Version |
Spring Boot Version |
| 2025.1.0.0 |
2025.1.0 |
4.0.0 |
| Spring Cloud Alibaba Version |
Spring Cloud Version |
Spring Boot Version |
| 2025.0.0.0 |
2025.0.0 |
3.5.0 |
Component version relationships#
The component versions each Spring Cloud Alibaba release is compatible with are shown below:
| Spring Cloud Alibaba Version |
Sentinel Version |
Nacos Version |
RocketMQ Version |
SchedulerX Version |
Seata Version |
| 2025.1.0.0 |
1.8.9 |
3.1.1 |
5.3.1 |
1.13.3 |
2.5.0 |
| 2025.0.0.0 |
1.8.9 |
3.0.3 |
5.3.1 |
1.13.1 |
2.5.0 |
Importing the dependencies#
<dependencyManagement>
<dependencies>
<!-- Unified Spring Boot version management -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>3.5.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Official Spring Cloud version management -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2025.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Unified Spring Cloud Alibaba (Alibaba ecosystem) version -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
<version>2025.0.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
Spring Boot 3.3.4 and earlier#
📌 New versions (Calendar Versioning, recommended)#
| Spring Cloud Alibaba |
Spring Cloud |
Spring Boot |
| 2023.0.3.2 |
2023.0.3 |
3.3.4 |
| 2023.0.3.0 |
2023.0.3 |
3.3.4 |
| 2023.0.1.0 |
2023.0.1 |
3.2.4 |
| 2023.0.0.0-RC1 |
2023.0.0 |
3.2.0 |
| 2022.0.0.0 |
2022.0.0 |
3.0.2 |
| 2022.0.0.0-RC2 |
2022.0.0-RC2 |
3.0.2 |
| 2022.0.0.0-RC1 |
2022.0.0-RC1 |
3.0.0 |
| 2021.0.6.2 |
2021.0.9 |
2.7.18 |
| 2021.0.6.0 |
2021.0.9 |
2.7.18 |
| 2021.0.5.0 |
2021.0.5 |
2.6.13 |
| 2021.0.4.0 |
2021.0.4 |
2.6.11 |
| 2021.0.1.0 |
2021.0.1 |
2.6.3 |
| 2021.1 |
2020.0.1 |
2.4.2 |
📌 Old versions (RELEASE naming)#
| Spring Cloud Alibaba |
Spring Cloud |
Spring Boot |
| 2.2.10.RELEASE |
Hoxton.SR12 |
2.3.12.RELEASE |
| 2.2.9.RELEASE |
Hoxton.SR12 |
2.3.12.RELEASE |
| 2.2.8.RELEASE |
Hoxton.SR12 |
2.3.12.RELEASE |
| 2.2.7.RELEASE |
Hoxton.SR12 |
2.3.12.RELEASE |
| 2.2.6.RELEASE |
Hoxton.SR9 |
2.3.2.RELEASE |
| 2.2.1.RELEASE |
Hoxton.SR3 |
2.2.5.RELEASE |
| 2.2.0.RELEASE |
Hoxton.RELEASE |
2.2.X.RELEASE |
| 2.1.4.RELEASE |
Greenwich.SR6 |
2.1.13.RELEASE |
| 2.1.2.RELEASE |
Greenwich |
2.1.X.RELEASE |
| 2.0.4.RELEASE ⛔ |
Finchley |
2.0.X.RELEASE |
| 1.5.1.RELEASE ⛔ |
Edgware |
1.5.X.RELEASE |
⛔ means maintenance has stopped
✅ Commonly recommended combinations#
| Scenario |
Spring Boot |
SCA Version |
| Latest stable (JDK 17/21) |
3.3.4 |
2023.0.3.2 |
| Mainstream stable (JDK 17) |
3.2.4 |
2023.0.1.0 |
| Stable transition (JDK 11/17) |
2.7.18 |
2021.0.6.2 |
| Legacy maintenance (JDK 8) |
2.6.13 |
2021.0.5.0 |
| Classic legacy project (JDK 8) |
2.3.12.RELEASE |
2.2.10.RELEASE |
⚠️ Important notes#
- Version naming rule (from 2021+): SCA version number =
${Spring Cloud version}.${SCA's own minor version}
- Be sure all three match; don’t mix and match arbitrarily
- If in doubt, defer to the official Releases page