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

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


The following commit(s) were added to refs/heads/master by this push:
     new 91ce947  Disable REST Client MicroProfile extension for a bit and 
small optimization in scanning
91ce947 is described below

commit 91ce947b1cbc4a93abc420fe0ef0f2d069534072
Author: Jean-Louis Monteiro <[email protected]>
AuthorDate: Thu Mar 24 18:08:36 2022 +0100

    Disable REST Client MicroProfile extension for a bit and small optimization 
in scanning
---
 container/openejb-core/src/main/resources/default.exclusions     | 1 +
 .../mp-jwt-bean-validation/src/test/resources/arquillian.xml     | 1 +
 tck/microprofile-tck/jwt/pom.xml                                 | 9 ++++++++-
 .../jwt/validation/ExpClaimAllowMissingExpValidationTest.java    | 2 +-
 .../org/apache/tomee/microprofile/TomEEMicroProfileListener.java | 2 +-
 5 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/container/openejb-core/src/main/resources/default.exclusions 
b/container/openejb-core/src/main/resources/default.exclusions
index 43d831b..340ba55 100644
--- a/container/openejb-core/src/main/resources/default.exclusions
+++ b/container/openejb-core/src/main/resources/default.exclusions
@@ -302,5 +302,6 @@ xmlsec-
 xmltooling-
 xmlunit-
 xsom-
+yoko-
 zipfs.jar
 ziplock-
diff --git a/examples/mp-jwt-bean-validation/src/test/resources/arquillian.xml 
b/examples/mp-jwt-bean-validation/src/test/resources/arquillian.xml
index 764e42c..aeb87da 100644
--- a/examples/mp-jwt-bean-validation/src/test/resources/arquillian.xml
+++ b/examples/mp-jwt-bean-validation/src/test/resources/arquillian.xml
@@ -23,6 +23,7 @@
         <configuration>
             <property name="httpPort">-1</property>
             <property name="stopPort">-1</property>
+            <property name="debug">false</property>
             <property name="classifier">microprofile</property>
             <property name="dir">target/apache-tomee-remote</property>
             <property 
name="appWorkingDir">target/arquillian-test-working-dir</property>
diff --git a/tck/microprofile-tck/jwt/pom.xml b/tck/microprofile-tck/jwt/pom.xml
index d3c7ad0..a04fb49 100644
--- a/tck/microprofile-tck/jwt/pom.xml
+++ b/tck/microprofile-tck/jwt/pom.xml
@@ -134,7 +134,14 @@
     <dependency>
       <groupId>org.apache.geronimo.config</groupId>
       <artifactId>geronimo-config-impl</artifactId>
-      <version>1.2</version>
+      <version>1.2.3</version>
+      <classifier>jakarta</classifier>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.nimbusds</groupId>
+      <artifactId>nimbus-jose-jwt</artifactId>
+      <version>4.23</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git 
a/tck/microprofile-tck/jwt/src/test/java/org/apache/tomee/microprofile/tck/jwt/validation/ExpClaimAllowMissingExpValidationTest.java
 
b/tck/microprofile-tck/jwt/src/test/java/org/apache/tomee/microprofile/tck/jwt/validation/ExpClaimAllowMissingExpValidationTest.java
index f6ad952..82643c0 100644
--- 
a/tck/microprofile-tck/jwt/src/test/java/org/apache/tomee/microprofile/tck/jwt/validation/ExpClaimAllowMissingExpValidationTest.java
+++ 
b/tck/microprofile-tck/jwt/src/test/java/org/apache/tomee/microprofile/tck/jwt/validation/ExpClaimAllowMissingExpValidationTest.java
@@ -19,7 +19,6 @@
  */
 package org.apache.tomee.microprofile.tck.jwt.validation;
 
-import jdk.nashorn.internal.ir.annotations.Ignore;
 import org.eclipse.microprofile.jwt.config.Names;
 import org.eclipse.microprofile.jwt.tck.TCKConstants;
 import org.eclipse.microprofile.jwt.tck.config.PublicKeyEndpoint;
@@ -36,6 +35,7 @@ import org.jboss.shrinkwrap.api.asset.StringAsset;
 import org.jboss.shrinkwrap.api.spec.WebArchive;
 import org.testng.Assert;
 import org.testng.Reporter;
+import org.testng.annotations.Ignore;
 import org.testng.annotations.Test;
 
 import jakarta.json.Json;
diff --git 
a/tomee/tomee-microprofile/mp-common/src/main/java/org/apache/tomee/microprofile/TomEEMicroProfileListener.java
 
b/tomee/tomee-microprofile/mp-common/src/main/java/org/apache/tomee/microprofile/TomEEMicroProfileListener.java
index 043c623..209a9fb 100644
--- 
a/tomee/tomee-microprofile/mp-common/src/main/java/org/apache/tomee/microprofile/TomEEMicroProfileListener.java
+++ 
b/tomee/tomee-microprofile/mp-common/src/main/java/org/apache/tomee/microprofile/TomEEMicroProfileListener.java
@@ -53,7 +53,7 @@ public class TomEEMicroProfileListener {
             "org.apache.geronimo.microprofile.metrics.cdi.MetricsExtension",
             
"org.apache.geronimo.microprofile.opentracing.microprofile.cdi.OpenTracingExtension",
             
"org.apache.geronimo.microprofile.openapi.cdi.GeronimoOpenAPIExtension",
-            "org.apache.cxf.microprofile.client.cdi.RestClientExtension",
+            // "org.apache.cxf.microprofile.client.cdi.RestClientExtension",
             };
 
     @SuppressWarnings("Duplicates")

Reply via email to