Reverse the dependency between context propagation and mutiny.

This commit is contained in:
Clement Escoffier
2020-02-21 12:40:10 +01:00
parent c13dad146a
commit acd0f75ae2
3 changed files with 20 additions and 5 deletions

View File

@@ -23,6 +23,20 @@
<groupId>io.smallrye.reactive</groupId>
<artifactId>mutiny</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-smallrye-context-propagation</artifactId>
<exclusions>
<exclusion>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-context-propagation</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.smallrye.reactive</groupId>
<artifactId>mutiny-context-propagation</artifactId>
</dependency>
<dependency>
<groupId>io.smallrye.reactive</groupId>
<artifactId>smallrye-reactive-converter-api</artifactId>

View File

@@ -42,7 +42,7 @@
<artifactId>quarkus-undertow-deployment</artifactId>
<scope>test</scope>
</dependency>
<!-- For Single tests -->
<!-- For RX Java tests -->
<dependency>
<groupId>io.reactivex.rxjava2</groupId>
<artifactId>rxjava</artifactId>
@@ -59,6 +59,11 @@
<scope>test</scope>
</dependency>
<!-- For Mutiny tests -->
<dependency>
<groupId>io.smallrye.reactive</groupId>
<artifactId>mutiny-context-propagation</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-mutiny-deployment</artifactId>

View File

@@ -38,10 +38,6 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.smallrye.reactive</groupId>
<artifactId>mutiny-context-propagation</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-core</artifactId>