Add dependency management for rxjava-reactive-streams

Allows for bridging webflux when using hystrix commands. fixes gh-2355
parent d76416f0
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
<servo.version>0.10.1</servo.version> <servo.version>0.10.1</servo.version>
<zuul.version>1.3.0</zuul.version> <zuul.version>1.3.0</zuul.version>
<rxjava.version>1.2.0</rxjava.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> <java.version>1.7</java.version>
<turbine.version>1.0.0</turbine.version> <turbine.version>1.0.0</turbine.version>
<eureka-jersey.version>1.19.1</eureka-jersey.version> <eureka-jersey.version>1.19.1</eureka-jersey.version>
...@@ -402,6 +403,11 @@ ...@@ -402,6 +403,11 @@
<version>${rxjava.version}</version> <version>${rxjava.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>io.reactivex</groupId>
<artifactId>rxjava-reactive-streams</artifactId>
<version>${rxjava-reactive-streams.version}</version>
</dependency>
<dependency>
<groupId>com.netflix.zuul</groupId> <groupId>com.netflix.zuul</groupId>
<artifactId>zuul-core</artifactId> <artifactId>zuul-core</artifactId>
<version>${zuul.version}</version> <version>${zuul.version}</version>
......
...@@ -42,5 +42,9 @@ ...@@ -42,5 +42,9 @@
<groupId>com.netflix.hystrix</groupId> <groupId>com.netflix.hystrix</groupId>
<artifactId>hystrix-javanica</artifactId> <artifactId>hystrix-javanica</artifactId>
</dependency> </dependency>
<dependency>
<groupId>io.reactivex</groupId>
<artifactId>rxjava-reactive-streams</artifactId>
</dependency>
</dependencies> </dependencies>
</project> </project>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment