diff --git a/integration-tests/grpc-mutual-auth/pom.xml b/integration-tests/grpc-mutual-auth/pom.xml index bea724d90271d..e0a8f4577a7b5 100644 --- a/integration-tests/grpc-mutual-auth/pom.xml +++ b/integration-tests/grpc-mutual-auth/pom.xml @@ -16,11 +16,7 @@ io.quarkus - quarkus-resteasy - - - io.quarkus - quarkus-resteasy-mutiny + quarkus-resteasy-reactive io.quarkus @@ -78,20 +74,7 @@ io.quarkus - quarkus-resteasy-deployment - ${project.version} - pom - test - - - * - * - - - - - io.quarkus - quarkus-resteasy-mutiny-deployment + quarkus-resteasy-reactive-deployment ${project.version} pom test diff --git a/integration-tests/grpc-mutual-auth/src/main/resources/application.properties b/integration-tests/grpc-mutual-auth/src/main/resources/application.properties index 86259c5cf33cb..8c606e7e195ba 100644 --- a/integration-tests/grpc-mutual-auth/src/main/resources/application.properties +++ b/integration-tests/grpc-mutual-auth/src/main/resources/application.properties @@ -21,8 +21,8 @@ quarkus.grpc.server.ssl.trust-store-password=123456 quarkus.grpc.server.ssl.client-auth=REQUIRED %vertx.quarkus.http.insecure-requests=disabled -%vertx.quarkus.http.ssl.certificate.file=tls/server.pem -%vertx.quarkus.http.ssl.certificate.key-file=tls/server.key +%vertx.quarkus.http.ssl.certificate.files=tls/server.pem +%vertx.quarkus.http.ssl.certificate.key-files=tls/server.key %vertx.quarkus.http.ssl.certificate.trust-store-file=tls/ca.jks %vertx.quarkus.http.ssl.certificate.trust-store-password=123456 %vertx.quarkus.http.ssl.client-auth=required diff --git a/integration-tests/grpc-tls/pom.xml b/integration-tests/grpc-tls/pom.xml index 617b39cb540c7..c7749e2cce27c 100644 --- a/integration-tests/grpc-tls/pom.xml +++ b/integration-tests/grpc-tls/pom.xml @@ -16,11 +16,7 @@ io.quarkus - quarkus-resteasy - - - io.quarkus - quarkus-resteasy-mutiny + quarkus-resteasy-reactive io.quarkus @@ -69,20 +65,7 @@ io.quarkus - quarkus-resteasy-deployment - ${project.version} - pom - test - - - * - * - - - - - io.quarkus - quarkus-resteasy-mutiny-deployment + quarkus-resteasy-reactive-deployment ${project.version} pom test diff --git a/integration-tests/grpc-tls/src/main/resources/application.properties b/integration-tests/grpc-tls/src/main/resources/application.properties index b1e89cf8399d0..736059e3318a6 100644 --- a/integration-tests/grpc-tls/src/main/resources/application.properties +++ b/integration-tests/grpc-tls/src/main/resources/application.properties @@ -5,8 +5,8 @@ quarkus.grpc.clients.hello.ssl.trust-store=tls/ca.pem quarkus.grpc.server.ssl.certificate=tls/server.pem quarkus.grpc.server.ssl.key=tls/server.key -%vertx.quarkus.http.ssl.certificate.file=tls/server.pem -%vertx.quarkus.http.ssl.certificate.key-file=tls/server.key +%vertx.quarkus.http.ssl.certificate.files=tls/server.pem +%vertx.quarkus.http.ssl.certificate.key-files=tls/server.key quarkus.grpc.server.port=9001