Add dependency management for rxjava-reactive-streams

Allows for bridging webflux when using hystrix commands.

fixes gh-2355
This commit is contained in:
Spencer Gibb
2017-10-10 12:25:39 -04:00
parent d76416f03c
commit f4321dd3d6
2 changed files with 10 additions and 0 deletions

View File

@@ -22,6 +22,7 @@
<servo.version>0.10.1</servo.version>
<zuul.version>1.3.0</zuul.version>
<rxjava.version>1.2.0</rxjava.version>
<rxjava-reactive-streams.version>1.2.1</rxjava-reactive-streams.version>
<java.version>1.7</java.version>
<turbine.version>1.0.0</turbine.version>
<eureka-jersey.version>1.19.1</eureka-jersey.version>
@@ -401,6 +402,11 @@
<artifactId>rxjava</artifactId>
<version>${rxjava.version}</version>
</dependency>
<dependency>
<groupId>io.reactivex</groupId>
<artifactId>rxjava-reactive-streams</artifactId>
<version>${rxjava-reactive-streams.version}</version>
</dependency>
<dependency>
<groupId>com.netflix.zuul</groupId>
<artifactId>zuul-core</artifactId>

View File

@@ -42,5 +42,9 @@
<groupId>com.netflix.hystrix</groupId>
<artifactId>hystrix-javanica</artifactId>
</dependency>
<dependency>
<groupId>io.reactivex</groupId>
<artifactId>rxjava-reactive-streams</artifactId>
</dependency>
</dependencies>
</project>