Skip to content

Commit

Permalink
Adding rest-client-reactive-jackson
Browse files Browse the repository at this point in the history
* Adding rest-client-reactive-jackson extensions to modules using
  reactive rest client. This change is needed as the server and client
  extension has been split in quarkusio/quarkus#30529
  • Loading branch information
mjurc committed Feb 3, 2023
1 parent 1e86d95 commit 597ffd0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions http/jaxrs-reactive/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-reactive-jackson</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-rest-client-reactive-jackson</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-rest-client-reactive</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,13 @@
import static io.restassured.RestAssured.given;
import static org.hamcrest.Matchers.containsStringIgnoringCase;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;

import io.quarkus.test.scenarios.QuarkusScenario;

@Tag("QUARKUS-1225")
@QuarkusScenario
@Disabled("https://github.com/quarkusio/quarkus/issues/30814")
public class MultipartClientIT {

@Test
Expand Down
4 changes: 4 additions & 0 deletions security/keycloak-oidc-client-reactive-basic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-reactive-jackson</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-rest-client-reactive-jackson</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-oidc</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

import org.apache.http.HttpStatus;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import io.quarkus.test.bootstrap.KeycloakService;
Expand Down Expand Up @@ -41,7 +40,6 @@ protected RestService getApp() {
}

@Test
@Disabled("https://github.com/quarkusio/quarkus/issues/30814")
public void authorizationHeaderDoesNotRepeat() {
final Response response = given()
.when()
Expand Down

0 comments on commit 597ffd0

Please sign in to comment.