组件版本关系
毕业版本依赖关系(推荐使用)
依赖管理Spring Cloud Alibaba BOM 包含了它所使用的所有依赖的版本。 RELEASE 版本Spring Cloud 2020spring cloud Alibaba 微服务 flowable 工作流 自定义表单 vue.js前后分离(fhadmin.cn) 如果需要使用 Spring Cloud 2020 版本,请在 dependencyManagement 中添加如下内容 <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-alibaba-dependencies</artifactId> <version>2021.1</version> <type>pom</type> <scope>import</scope></dependency> Spring Cloud Hoxton如果需要使用 Spring Cloud Hoxton 版本,请在 dependencyManagement 中添加如下内容 <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-alibaba-dependencies</artifactId> <version>2.2.6.RELEASE</version> <type>pom</type> <scope>import</scope></dependency> Spring Cloud Greenwich如果需要使用 Spring Cloud Greenwich 版本,请在 dependencyManagement 中添加如下内容 <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-alibaba-dependencies</artifactId> <version>2.1.4.RELEASE</version> <type>pom</type> <scope>import</scope></dependency> Spring Cloud Finchley如果需要使用 Spring Cloud Finchley 版本,请在 dependencyManagement 中添加如下内容 <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-alibaba-dependencies</artifactId> <version>2.0.4.RELEASE</version> <type>pom</type> <scope>import</scope></dependency> Spring Cloud Edgware如果需要使用 Spring Cloud Edgware 版本,请在 dependencyManagement 中添加如下内容 <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-alibaba-dependencies</artifactId> <version>1.5.1.RELEASE</version> <type>pom</type> <scope>import</scope></dependency> 孵化器版本依赖关系(不推荐使用)
依赖管理Spring Cloud Alibaba BOM 包含了它所使用的所有依赖的版本。 RELEASE 版本Spring Cloud Greenwichspring cloud Alibaba 微服务 flowable 工作流 自定义表单 vue.js前后分离(fhadmin.cn) 如果需要使用 Spring Cloud Greenwich 版本,请在 dependencyManagement 中添加如下内容 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-alibaba-dependencies</artifactId> <version>0.9.0.RELEASE</version> <type>pom</type> <scope>import</scope></dependency> Spring Cloud Finchley如果需要使用 Spring Cloud Finchley 版本,请在 dependencyManagement 中添加如下内容 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-alibaba-dependencies</artifactId> <version>0.2.2.RELEASE</version> <type>pom</type> <scope>import</scope></dependency> Spring Cloud Edgware如果需要使用 Spring Cloud Edgware 版本,请在 dependencyManagement 中添加如下内容 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-alibaba-dependencies</artifactId> <version>0.1.2.RELEASE</version> <type>pom</type> <scope>import</scope></dependency> |
|