Last active
March 15, 2020 13:54
-
-
Save feuyeux/9a68717fee247c30b90d0be9245efc5d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-rsocket</artifactId> | |
<version>${spring-boot.version}</version> | |
<exclusions> | |
<exclusion> | |
<groupId>io.netty</groupId> | |
<artifactId>netty-buffer</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>io.projectreactor</groupId> | |
<artifactId>reactor-core</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>io.projectreactor.netty</groupId> | |
<artifactId>reactor-netty</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>io.netty</groupId> | |
<artifactId>netty-buffer</artifactId> | |
<version>${netty.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>io.projectreactor</groupId> | |
<artifactId>reactor-core</artifactId> | |
<version>${reactor-core.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>io.projectreactor.netty</groupId> | |
<artifactId>reactor-netty</artifactId> | |
<version>${reactor-netty.version}</version> | |
</dependency> | |
<properties> | |
<spring-boot.version>2.2.5.RELEASE</spring-boot.version> | |
<spring.version>5.2.4.RELEASE</spring.version> | |
<rsocket.version>1.0.0-RC6</rsocket.version> | |
<reactor-netty.version>0.9.5.RELEASE</reactor-netty.version> | |
<netty.version>4.1.45.Final</netty.version> | |
<reactor-core.version>3.3.3.RELEASE</reactor-core.version> | |
</properties> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment