Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save feuyeux/9a68717fee247c30b90d0be9245efc5d to your computer and use it in GitHub Desktop.
Save feuyeux/9a68717fee247c30b90d0be9245efc5d to your computer and use it in GitHub Desktop.
<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