1
0
mirror of https://gitee.com/mirrors/Spring-Cloud-Alibaba.git synced 2021-06-26 13:25:11 +08:00

fix compatibility problem between spring-boot-starter-webflux:2.2.4.RELEASE and spring-cloud-gateway-core:2.2.2.RELEASE

This commit is contained in:
theonefx 2020-03-26 17:26:56 +08:00
parent 2ed48c5506
commit 56ac7f1a3a

18
pom.xml
View File

@ -253,6 +253,24 @@
<artifactId>rocketmq-spring-boot-starter</artifactId>
<version>${rocketmq.starter.version}</version>
</dependency>
<!--
TODO:
check it every times, whern spring-boot-starter-webflux:2.2.4.RELEASE or spring-cloud-gateway-core:2.2.2.RELEASE has bean upgrade
due to spring-cloud-build:2.2.2.RELEASE has not support spring-cloud-gateway-dependencies:2.2.2.RELEASE very well
it cource some compatibility problem between ReactorNettyWebSocketClient and GatewayAutoConfiguration
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>5.2.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webflux</artifactId>
<version>5.2.4.RELEASE</version>
<scope>compile</scope>
</dependency>
</dependencies>
</dependencyManagement>