Skip to content

Commit

Permalink
Refactor ResteasyReactiveOutputStream so that it can be used by Quark…
Browse files Browse the repository at this point in the history
…us CXF fix quarkusio#40994
  • Loading branch information
ppalaga committed Jun 10, 2024
1 parent 250eb95 commit 1a6ba5d
Show file tree
Hide file tree
Showing 15 changed files with 209 additions and 555 deletions.
5 changes: 5 additions & 0 deletions bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4898,6 +4898,11 @@
<artifactId>resteasy-reactive-client-processor</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.quarkus.vertx-java-io</groupId>
<artifactId>quarkus-vertx-java-io</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.wildfly.common</groupId>
<artifactId>wildfly-common</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions extensions/resteasy-classic/resteasy/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-vertx-http</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus.vertx-java-io</groupId>
<artifactId>quarkus-vertx-java-io</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-server-common</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import io.netty.buffer.ByteBuf;
import io.quarkus.runtime.BlockingOperationNotAllowedException;
import io.quarkus.vertx.core.runtime.VertxBufferImpl;
import io.quarkus.vertx.java.io.VertxBufferImpl;
import io.vertx.core.AsyncResult;
import io.vertx.core.Context;
import io.vertx.core.Handler;
Expand Down
4 changes: 4 additions & 0 deletions extensions/websockets-next/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-vertx-http</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus.vertx-java-io</groupId>
<artifactId>quarkus-vertx-java-io</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-jackson</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import org.jboss.logging.Logger;

import io.quarkus.vertx.core.runtime.VertxBufferImpl;
import io.quarkus.vertx.java.io.VertxBufferImpl;
import io.quarkus.websockets.next.CloseReason;
import io.quarkus.websockets.next.HandshakeRequest;
import io.quarkus.websockets.next.WebSocketConnection.BroadcastSender;
Expand Down
6 changes: 6 additions & 0 deletions independent-projects/resteasy-reactive/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,12 @@
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.quarkus.vertx-java-io</groupId>
<artifactId>quarkus-vertx-java-io</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.quarkus.resteasy.reactive</groupId>
<artifactId>resteasy-reactive-client-processor</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions independent-projects/resteasy-reactive/server/vertx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
<groupId>io.quarkus.resteasy.reactive</groupId>
<artifactId>resteasy-reactive</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus.vertx-java-io</groupId>
<artifactId>quarkus-vertx-java-io</artifactId>
</dependency>
<dependency>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-api</artifactId>
Expand Down
Loading

0 comments on commit 1a6ba5d

Please sign in to comment.