POM添加spring cloud alibaba相关jar包

 1 <dependency>
 2     <groupId>org.springframework.boot</groupId>
 3     <artifactId>spring-boot-dependencies</artifactId>
 4     <version>${spring-boot.version}</version>
 5     <type>pom</type>
 6     <scope>import</scope>
 7 </dependency>
 8 <dependency>
 9     <groupId>org.springframework.cloud</groupId>
10     <artifactId>spring-cloud-dependencies</artifactId>
11     <version>${spring-cloud.version}</version>
12     <type>pom</type>
13     <scope>import</scope>
14 </dependency>
15 <dependency>
16     <groupId>com.alibaba.cloud</groupId>
17     <artifactId>spring-cloud-alibaba-dependencies</artifactId>
18     <version>${spring-cloud-alibaba.version}</version>
19     <type>pom</type>
20     <scope>import</scope>
21 </dependency>
spring-boot-dependencies
 
2.2.1.RELEASE
spring-cloud-dependencies
 
Hoxton.SR6
spring-cloud-alibaba-dependencies
 
2.2.5.RELEASE
posted on 2021-08-29 21:01  nebula_buck  阅读(191)  评论(0编辑  收藏  举报