This is an automated email from the ASF dual-hosted git repository.

rzo1 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomee.git


The following commit(s) were added to refs/heads/main by this push:
     new 59c7dc8f0c OMEE-4581 - CXF 4.2.0 - Fixes due to "CXF-9116: Remove 
org.apache.cxf.feature.LoggingFeature"
59c7dc8f0c is described below

commit 59c7dc8f0cedbf548d342774b0597e25cc8ab180
Author: Richard Zowalla <[email protected]>
AuthorDate: Mon Feb 16 20:44:08 2026 +0100

    OMEE-4581 - CXF 4.2.0 - Fixes due to "CXF-9116: Remove 
org.apache.cxf.feature.LoggingFeature"
---
 .../src/test/java/org/superbiz/MovieServiceTest.java                  | 3 +--
 .../src/test/java/org/superbiz/MovieServiceTest.java                  | 3 +--
 .../src/test/java/org/superbiz/bookstore/BookstoreTest.java           | 4 +---
 .../apache/tomee/microprofile/jwt/itest/AllowNoExpPropertyTest.java   | 4 +---
 .../apache/tomee/microprofile/jwt/itest/EncryptionAlgorithmsTest.java | 4 +---
 .../org/apache/tomee/microprofile/jwt/itest/InvalidSignatureTest.java | 3 +--
 .../tomee/microprofile/jwt/itest/MinimumRequiredClaimsTest.java       | 3 +--
 .../tomee/microprofile/jwt/itest/MissingRequiredClaimsTest.java       | 4 +---
 .../org/apache/tomee/microprofile/jwt/itest/MultipleKeysTest.java     | 3 +--
 .../org/apache/tomee/microprofile/jwt/itest/PublicKeyFormatsTest.java | 3 +--
 .../tomee/microprofile/jwt/itest/PublicKeyLocationCachedTest.java     | 3 +--
 .../apache/tomee/microprofile/jwt/itest/PublicKeyLocationTest.java    | 3 +--
 .../java/org/apache/tomee/microprofile/jwt/itest/RsaKeySizesTest.java | 3 +--
 .../org/apache/tomee/microprofile/jwt/itest/ShaHashSizesTest.java     | 3 +--
 .../apache/tomee/microprofile/jwt/itest/SignatureAlgorithmsTest.java  | 3 +--
 .../tomee/microprofile/jwt/itest/bval/ValidationConstraintsTest.java  | 3 +--
 .../microprofile/jwt/itest/keys/http/HttpKeyAccessTimeoutTest.java    | 1 -
 .../jwt/itest/keys/http/HttpKeyInitializationEmptyKeySetTest.java     | 1 -
 .../jwt/itest/keys/http/HttpKeyInitializationHttp500Test.java         | 1 -
 .../jwt/itest/keys/http/HttpKeyInitializationNoValidKeysTest.java     | 1 -
 .../tomee/microprofile/jwt/itest/keys/http/HttpKeyLocationTest.java   | 1 -
 .../jwt/itest/keys/http/HttpKeyRotationEmptyKeySetTest.java           | 1 -
 .../microprofile/jwt/itest/keys/http/HttpKeyRotationHttp500Test.java  | 1 -
 .../jwt/itest/keys/http/HttpKeyRotationNoValidKeysTest.java           | 1 -
 .../test/java/org/apache/tomee/microprofile/openapi/OpenApiTest.java  | 4 +---
 .../java/org/apache/tomee/security/itest/LoginToContinueTest.java     | 4 +---
 26 files changed, 18 insertions(+), 50 deletions(-)

diff --git 
a/examples/mp-jwt-bean-validation-strongly-typed/src/test/java/org/superbiz/MovieServiceTest.java
 
b/examples/mp-jwt-bean-validation-strongly-typed/src/test/java/org/superbiz/MovieServiceTest.java
index 8fe6ca9eec..a8cc67cdc1 100644
--- 
a/examples/mp-jwt-bean-validation-strongly-typed/src/test/java/org/superbiz/MovieServiceTest.java
+++ 
b/examples/mp-jwt-bean-validation-strongly-typed/src/test/java/org/superbiz/MovieServiceTest.java
@@ -16,7 +16,6 @@
  */
 package org.superbiz;
 
-import org.apache.cxf.feature.LoggingFeature;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.johnzon.jaxrs.JohnzonProvider;
 import org.jboss.arquillian.container.test.api.Deployment;
@@ -180,7 +179,7 @@ public class MovieServiceTest {
 
     private static WebClient createWebClient(final URL base) {
         return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()),
-                singletonList(new LoggingFeature()), null);
+               null);
     }
 
 }
diff --git 
a/examples/mp-jwt-bean-validation/src/test/java/org/superbiz/MovieServiceTest.java
 
b/examples/mp-jwt-bean-validation/src/test/java/org/superbiz/MovieServiceTest.java
index eb8a6652ae..f7faa619e7 100644
--- 
a/examples/mp-jwt-bean-validation/src/test/java/org/superbiz/MovieServiceTest.java
+++ 
b/examples/mp-jwt-bean-validation/src/test/java/org/superbiz/MovieServiceTest.java
@@ -16,7 +16,6 @@
  */
 package org.superbiz;
 
-import org.apache.cxf.feature.LoggingFeature;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.johnzon.jaxrs.JohnzonProvider;
 import org.jboss.arquillian.container.test.api.Deployment;
@@ -182,7 +181,7 @@ public class MovieServiceTest {
 
     private static WebClient createWebClient(final URL base) {
         return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()),
-                singletonList(new LoggingFeature()), null);
+                 null);
     }
 
 }
diff --git 
a/examples/mp-rest-jwt-public-key/src/test/java/org/superbiz/bookstore/BookstoreTest.java
 
b/examples/mp-rest-jwt-public-key/src/test/java/org/superbiz/bookstore/BookstoreTest.java
index d60cb0488c..0be81e86e8 100644
--- 
a/examples/mp-rest-jwt-public-key/src/test/java/org/superbiz/bookstore/BookstoreTest.java
+++ 
b/examples/mp-rest-jwt-public-key/src/test/java/org/superbiz/bookstore/BookstoreTest.java
@@ -25,7 +25,6 @@ import com.nimbusds.jwt.SignedJWT;
 import net.minidev.json.JSONObject;
 import org.apache.cxf.Bus;
 import org.apache.cxf.BusFactory;
-import org.apache.cxf.feature.LoggingFeature;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.johnzon.jaxrs.JohnzonProvider;
 import org.eclipse.microprofile.jwt.Claims;
@@ -76,8 +75,7 @@ public class BookstoreTest {
         bus.setProperty("skip.jakarta.json.providers.registration", "true");
 
         final WebClient webClient = WebClient
-                .create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()),
-                        singletonList(new LoggingFeature()), null);
+                .create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()), null);
 
 
         // Testing REST endpoint that returns the value of a JWT claim
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/AllowNoExpPropertyTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/AllowNoExpPropertyTest.java
index c7fe360579..3e92a2570c 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/AllowNoExpPropertyTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/AllowNoExpPropertyTest.java
@@ -33,7 +33,6 @@ import java.util.ArrayList;
 import java.util.Base64;
 import static java.util.Collections.singletonList;
 import java.util.Optional;
-import org.apache.cxf.feature.LoggingFeature;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.johnzon.jaxrs.JohnzonProvider;
 import org.apache.tomee.server.composer.Archive;
@@ -229,8 +228,7 @@ public class AllowNoExpPropertyTest {
     }
 
     private static WebClient createWebClient(final URL base) {
-        return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()),
-                singletonList(new LoggingFeature()), null);
+        return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()), null);
     }
 
     @ApplicationPath("/api")
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/EncryptionAlgorithmsTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/EncryptionAlgorithmsTest.java
index a8ed538a2e..0f0a9f00fc 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/EncryptionAlgorithmsTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/EncryptionAlgorithmsTest.java
@@ -31,7 +31,6 @@ import jakarta.ws.rs.Produces;
 import jakarta.ws.rs.core.Application;
 import jakarta.ws.rs.core.MediaType;
 import jakarta.ws.rs.core.Response;
-import org.apache.cxf.feature.LoggingFeature;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.johnzon.jaxrs.JohnzonProvider;
 import org.apache.tomee.server.composer.Archive;
@@ -144,8 +143,7 @@ public class EncryptionAlgorithmsTest {
     }
 
     private static WebClient createWebClient(final URL base) {
-        return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()),
-                singletonList(new LoggingFeature()), null);
+        return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()), null);
     }
 
     @ApplicationPath("/api")
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/InvalidSignatureTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/InvalidSignatureTest.java
index 89edefddd7..e09b22f7f8 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/InvalidSignatureTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/InvalidSignatureTest.java
@@ -18,7 +18,6 @@
 
 package org.apache.tomee.microprofile.jwt.itest;
 
-import org.apache.cxf.feature.LoggingFeature;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.johnzon.jaxrs.JohnzonProvider;
 import org.apache.tomee.server.composer.Archive;
@@ -111,7 +110,7 @@ public class InvalidSignatureTest {
 
     private static WebClient createWebClient(final URL base) {
         return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()),
-                singletonList(new LoggingFeature()), null);
+                null);
     }
 
     @ApplicationPath("/api")
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/MinimumRequiredClaimsTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/MinimumRequiredClaimsTest.java
index e9401ab294..1bec0e77ad 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/MinimumRequiredClaimsTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/MinimumRequiredClaimsTest.java
@@ -18,7 +18,6 @@
 
 package org.apache.tomee.microprofile.jwt.itest;
 
-import org.apache.cxf.feature.LoggingFeature;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.johnzon.jaxrs.JohnzonProvider;
 import org.apache.tomee.server.composer.Archive;
@@ -105,7 +104,7 @@ public class MinimumRequiredClaimsTest {
 
     private static WebClient createWebClient(final URL base) {
         return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()),
-                singletonList(new LoggingFeature()), null);
+                null, null);
     }
 
     @ApplicationPath("/api")
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/MissingRequiredClaimsTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/MissingRequiredClaimsTest.java
index 559ec88327..7704f1955b 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/MissingRequiredClaimsTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/MissingRequiredClaimsTest.java
@@ -18,7 +18,6 @@
 
 package org.apache.tomee.microprofile.jwt.itest;
 
-import org.apache.cxf.feature.LoggingFeature;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.johnzon.jaxrs.JohnzonProvider;
 import org.apache.tomee.server.composer.Archive;
@@ -144,8 +143,7 @@ public class MissingRequiredClaimsTest {
     }
 
     private static WebClient createWebClient(final URL base) {
-        return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()),
-                singletonList(new LoggingFeature()), null);
+        return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()), null);
     }
 
     @ApplicationPath("/api")
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/MultipleKeysTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/MultipleKeysTest.java
index b4cfe8303c..7ff220e878 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/MultipleKeysTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/MultipleKeysTest.java
@@ -30,7 +30,6 @@ import jakarta.ws.rs.Produces;
 import jakarta.ws.rs.core.Application;
 import jakarta.ws.rs.core.MediaType;
 import jakarta.ws.rs.core.Response;
-import org.apache.cxf.feature.LoggingFeature;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.johnzon.jaxrs.JohnzonProvider;
 import org.apache.tomee.server.composer.Archive;
@@ -157,7 +156,7 @@ public class MultipleKeysTest {
 
     private static WebClient createWebClient(final URL base) {
         return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()),
-                singletonList(new LoggingFeature()), null);
+                null);
     }
 
     @ApplicationPath("/api")
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/PublicKeyFormatsTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/PublicKeyFormatsTest.java
index a05f2185a0..bccb986f4b 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/PublicKeyFormatsTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/PublicKeyFormatsTest.java
@@ -28,7 +28,6 @@ import jakarta.ws.rs.Produces;
 import jakarta.ws.rs.core.Application;
 import jakarta.ws.rs.core.MediaType;
 import jakarta.ws.rs.core.Response;
-import org.apache.cxf.feature.LoggingFeature;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.johnzon.jaxrs.JohnzonProvider;
 import org.apache.tomee.server.composer.Archive;
@@ -143,7 +142,7 @@ public class PublicKeyFormatsTest {
 
     private static WebClient createWebClient(final URL base) {
         return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()),
-                singletonList(new LoggingFeature()), null);
+                null);
     }
 
     @ApplicationPath("/api")
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/PublicKeyLocationCachedTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/PublicKeyLocationCachedTest.java
index b7782eff0a..ca7d45d267 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/PublicKeyLocationCachedTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/PublicKeyLocationCachedTest.java
@@ -28,7 +28,6 @@ import jakarta.ws.rs.Produces;
 import jakarta.ws.rs.core.Application;
 import jakarta.ws.rs.core.MediaType;
 import jakarta.ws.rs.core.Response;
-import org.apache.cxf.feature.LoggingFeature;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.johnzon.jaxrs.JohnzonProvider;
 import org.apache.tomee.server.composer.Archive;
@@ -180,7 +179,7 @@ public class PublicKeyLocationCachedTest {
 
     private static WebClient createWebClient(final URL base) {
         return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()),
-                singletonList(new LoggingFeature()), null);
+                null);
     }
 
     @ApplicationPath("/api")
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/PublicKeyLocationTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/PublicKeyLocationTest.java
index 453bf1686f..3d911ed6c2 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/PublicKeyLocationTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/PublicKeyLocationTest.java
@@ -28,7 +28,6 @@ import jakarta.ws.rs.Produces;
 import jakarta.ws.rs.core.Application;
 import jakarta.ws.rs.core.MediaType;
 import jakarta.ws.rs.core.Response;
-import org.apache.cxf.feature.LoggingFeature;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.johnzon.jaxrs.JohnzonProvider;
 import org.apache.tomee.server.composer.Archive;
@@ -176,7 +175,7 @@ public class PublicKeyLocationTest {
 
     private static WebClient createWebClient(final URL base) {
         return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()),
-                singletonList(new LoggingFeature()), null);
+                null);
     }
 
     @ApplicationPath("/api")
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/RsaKeySizesTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/RsaKeySizesTest.java
index 737cc46118..032ea7700f 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/RsaKeySizesTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/RsaKeySizesTest.java
@@ -18,7 +18,6 @@
 
 package org.apache.tomee.microprofile.jwt.itest;
 
-import org.apache.cxf.feature.LoggingFeature;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.johnzon.jaxrs.JohnzonProvider;
 import org.apache.tomee.server.composer.Archive;
@@ -103,7 +102,7 @@ public class RsaKeySizesTest {
 
     private static WebClient createWebClient(final URL base) {
         return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()),
-                singletonList(new LoggingFeature()), null);
+                null);
     }
 
     @ApplicationPath("/api")
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/ShaHashSizesTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/ShaHashSizesTest.java
index 4cd0f5cefc..344ed7c92e 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/ShaHashSizesTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/ShaHashSizesTest.java
@@ -18,7 +18,6 @@
 
 package org.apache.tomee.microprofile.jwt.itest;
 
-import org.apache.cxf.feature.LoggingFeature;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.johnzon.jaxrs.JohnzonProvider;
 import org.apache.tomee.server.composer.Archive;
@@ -110,7 +109,7 @@ public class ShaHashSizesTest {
 
     private static WebClient createWebClient(final URL base) {
         return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()),
-                singletonList(new LoggingFeature()), null);
+                null);
     }
 
     @ApplicationPath("/api")
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/SignatureAlgorithmsTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/SignatureAlgorithmsTest.java
index 7a1d4c87f8..099ac2cb96 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/SignatureAlgorithmsTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/SignatureAlgorithmsTest.java
@@ -31,7 +31,6 @@ import jakarta.ws.rs.Produces;
 import jakarta.ws.rs.core.Application;
 import jakarta.ws.rs.core.MediaType;
 import jakarta.ws.rs.core.Response;
-import org.apache.cxf.feature.LoggingFeature;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.johnzon.jaxrs.JohnzonProvider;
 import org.apache.tomee.server.composer.Archive;
@@ -131,7 +130,7 @@ public class SignatureAlgorithmsTest {
 
     private static WebClient createWebClient(final URL base) {
         return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()),
-                singletonList(new LoggingFeature()), null);
+                null);
     }
 
     @ApplicationPath("/api")
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/bval/ValidationConstraintsTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/bval/ValidationConstraintsTest.java
index 7f047f4576..bbe29872ff 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/bval/ValidationConstraintsTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/bval/ValidationConstraintsTest.java
@@ -30,7 +30,6 @@ import jakarta.ws.rs.Produces;
 import jakarta.ws.rs.core.Application;
 import jakarta.ws.rs.core.MediaType;
 import jakarta.ws.rs.core.Response;
-import org.apache.cxf.feature.LoggingFeature;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.johnzon.jaxrs.JohnzonProvider;
 import org.apache.tomee.microprofile.jwt.itest.Output;
@@ -284,7 +283,7 @@ public class ValidationConstraintsTest {
 
             final WebClient webClient = 
WebClient.create(tomee.toURI().resolve("/test").toURL().toExternalForm(),
                     singletonList(new JohnzonProvider<>()),
-                    singletonList(new LoggingFeature()), null);
+                    null);
             return new Scenario(tokens, webClient, output);
         }
 
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyAccessTimeoutTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyAccessTimeoutTest.java
index 1c3d44b835..2a291be6a9 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyAccessTimeoutTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyAccessTimeoutTest.java
@@ -122,7 +122,6 @@ public class HttpKeyAccessTimeoutTest {
 
         final WebClient client = 
WebClient.create(tomee.toURI().toASCIIString(),
                 singletonList(new JohnzonProvider<>()),
-//                    singletonList(new LoggingFeature()),
                 null);
 
         {// valid token
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyInitializationEmptyKeySetTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyInitializationEmptyKeySetTest.java
index 64455050fe..d0db7ae2ed 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyInitializationEmptyKeySetTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyInitializationEmptyKeySetTest.java
@@ -107,7 +107,6 @@ public class HttpKeyInitializationEmptyKeySetTest {
 
             final WebClient client = 
WebClient.create(tomee.toURI().toASCIIString(),
                     singletonList(new JohnzonProvider<>()),
-//                    singletonList(new LoggingFeature()),
                     null);
 
             {// valid token
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyInitializationHttp500Test.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyInitializationHttp500Test.java
index 3480069b05..6f7aca4cd8 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyInitializationHttp500Test.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyInitializationHttp500Test.java
@@ -106,7 +106,6 @@ public class HttpKeyInitializationHttp500Test {
 
             final WebClient client = 
WebClient.create(tomee.toURI().toASCIIString(),
                     singletonList(new JohnzonProvider<>()),
-//                    singletonList(new LoggingFeature()),
                     null);
 
             {// valid token
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyInitializationNoValidKeysTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyInitializationNoValidKeysTest.java
index c056ac7f00..b87d2bbdfc 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyInitializationNoValidKeysTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyInitializationNoValidKeysTest.java
@@ -107,7 +107,6 @@ public class HttpKeyInitializationNoValidKeysTest {
 
             final WebClient client = 
WebClient.create(tomee.toURI().toASCIIString(),
                     singletonList(new JohnzonProvider<>()),
-//                    singletonList(new LoggingFeature()),
                     null);
 
             {// valid token
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyLocationTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyLocationTest.java
index 3b9df4ce68..66391582d6 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyLocationTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyLocationTest.java
@@ -97,7 +97,6 @@ public class HttpKeyLocationTest {
 
             final WebClient client = 
WebClient.create(tomee.toURI().toASCIIString(),
                     singletonList(new JohnzonProvider<>()),
-//                    singletonList(new LoggingFeature()),
                     null);
 
             {// valid token
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyRotationEmptyKeySetTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyRotationEmptyKeySetTest.java
index 9a90b575c8..64fe477d54 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyRotationEmptyKeySetTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyRotationEmptyKeySetTest.java
@@ -180,7 +180,6 @@ public class HttpKeyRotationEmptyKeySetTest {
 
         final WebClient client = 
WebClient.create(tomee.toURI().toASCIIString(),
                 singletonList(new JohnzonProvider<>()),
-//                    singletonList(new LoggingFeature()),
                 null);
 
         {// valid token
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyRotationHttp500Test.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyRotationHttp500Test.java
index ba160935bb..e464591064 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyRotationHttp500Test.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyRotationHttp500Test.java
@@ -182,7 +182,6 @@ public class HttpKeyRotationHttp500Test {
 
         final WebClient client = 
WebClient.create(tomee.toURI().toASCIIString(),
                 singletonList(new JohnzonProvider<>()),
-//                    singletonList(new LoggingFeature()),
                 null);
 
         {// valid token
diff --git 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyRotationNoValidKeysTest.java
 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyRotationNoValidKeysTest.java
index 42ee9020ff..d25e9089f1 100644
--- 
a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyRotationNoValidKeysTest.java
+++ 
b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyRotationNoValidKeysTest.java
@@ -181,7 +181,6 @@ public class HttpKeyRotationNoValidKeysTest {
 
         final WebClient client = 
WebClient.create(tomee.toURI().toASCIIString(),
                 singletonList(new JohnzonProvider<>()),
-//                    singletonList(new LoggingFeature()),
                 null);
 
         {// valid token
diff --git 
a/itests/tomee-microprofile-itests/src/test/java/org/apache/tomee/microprofile/openapi/OpenApiTest.java
 
b/itests/tomee-microprofile-itests/src/test/java/org/apache/tomee/microprofile/openapi/OpenApiTest.java
index 9b1d2e1515..5e4161d240 100644
--- 
a/itests/tomee-microprofile-itests/src/test/java/org/apache/tomee/microprofile/openapi/OpenApiTest.java
+++ 
b/itests/tomee-microprofile-itests/src/test/java/org/apache/tomee/microprofile/openapi/OpenApiTest.java
@@ -23,7 +23,6 @@ import jakarta.ws.rs.GET;
 import jakarta.ws.rs.Path;
 import jakarta.ws.rs.QueryParam;
 import jakarta.ws.rs.core.Response;
-import org.apache.cxf.feature.LoggingFeature;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.johnzon.jaxrs.JohnzonProvider;
 import org.apache.tomee.server.composer.Archive;
@@ -176,8 +175,7 @@ public class OpenApiTest {
     }
 
     private static WebClient createWebClient(final URL base) {
-        return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()),
-                                singletonList(new LoggingFeature()), null);
+        return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()), null);
     }
 
     @Path("ok")
diff --git 
a/itests/tomee-security-itests/src/test/java/org/apache/tomee/security/itest/LoginToContinueTest.java
 
b/itests/tomee-security-itests/src/test/java/org/apache/tomee/security/itest/LoginToContinueTest.java
index c4baa18e4c..823b5610ac 100644
--- 
a/itests/tomee-security-itests/src/test/java/org/apache/tomee/security/itest/LoginToContinueTest.java
+++ 
b/itests/tomee-security-itests/src/test/java/org/apache/tomee/security/itest/LoginToContinueTest.java
@@ -34,7 +34,6 @@ import jakarta.ws.rs.Produces;
 import jakarta.ws.rs.core.Application;
 import jakarta.ws.rs.core.MediaType;
 import jakarta.ws.rs.core.Response;
-import org.apache.cxf.feature.LoggingFeature;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.johnzon.jaxrs.JohnzonProvider;
 import org.apache.tomee.security.cdi.TomcatUserIdentityStoreDefinition;
@@ -222,8 +221,7 @@ public class LoginToContinueTest {
     }
 
     private static WebClient createWebClient(final URL base) {
-        return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()),
-                                singletonList(new LoggingFeature()), null);
+        return WebClient.create(base.toExternalForm(), singletonList(new 
JohnzonProvider<>()), null);
     }
 
     @ApplicationPath("/api")

Reply via email to