Skip to content

Commit

Permalink
fix compatibility problem between spring-boot-starter-webflux:2.2.4.R…
Browse files Browse the repository at this point in the history
…ELEASE and spring-cloud-gateway-core:2.2.2.RELEASE
  • Loading branch information
theonefx committed Mar 26, 2020
1 parent 2ed48c5 commit 56ac7f1
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down

0 comments on commit 56ac7f1

Please sign in to comment.