You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jl...@apache.org on 2021/06/30 20:29:17 UTC

[tomee] branch master updated (a7a988b -> 899b3dc)

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

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


    from a7a988b  TOMEE-3756 - Upgrade HSQLDB to 2.5.2, Regenerate BOMs
     new 99c0b70  Temp fix to see how MP TCK look
     new 899b3dc  Fix potential random failure in discovery

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 tck/microprofile-tck/openapi/src/test/resources/arquillian.xml        | 3 +++
 .../org/apache/tomee/security/servlet/JaccPermissionServletTest.java  | 4 +++-
 2 files changed, 6 insertions(+), 1 deletion(-)

[tomee] 01/02: Temp fix to see how MP TCK look

Posted by jl...@apache.org.
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

commit 99c0b706b12514ae3101ca5b956d5b87a3f037c9
Author: Jean-Louis Monteiro <jl...@tomitribe.com>
AuthorDate: Wed Jun 30 22:28:48 2021 +0200

    Temp fix to see how MP TCK look
---
 tck/microprofile-tck/openapi/src/test/resources/arquillian.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tck/microprofile-tck/openapi/src/test/resources/arquillian.xml b/tck/microprofile-tck/openapi/src/test/resources/arquillian.xml
index 669ed09..0090224 100644
--- a/tck/microprofile-tck/openapi/src/test/resources/arquillian.xml
+++ b/tck/microprofile-tck/openapi/src/test/resources/arquillian.xml
@@ -33,6 +33,7 @@
       <property name="cleanOnStartUp">true</property>
       <property name="properties">
         geronimo.openapi.application.append-context-path = false
+        openejb.jaxrs.providers.auto = true
       </property>
     </configuration>
   </container>
@@ -49,6 +50,7 @@
       <property name="properties">
         tomee.mp.scan = all
         geronimo.openapi.application.append-context-path = false
+        openejb.jaxrs.providers.auto = true
       </property>
     </configuration>
   </container>
@@ -65,6 +67,7 @@
       <property name="properties">
         tomee.mp.scan = all
         geronimo.openapi.application.append-context-path = false
+        openejb.jaxrs.providers.auto = true
       </property>
     </configuration>
   </container>

[tomee] 02/02: Fix potential random failure in discovery

Posted by jl...@apache.org.
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

commit 899b3dc3bc6f35d8cb5710057d5c03c5c1dbb8a1
Author: Jean-Louis Monteiro <jl...@tomitribe.com>
AuthorDate: Wed Jun 30 22:29:02 2021 +0200

    Fix potential random failure in discovery
---
 .../org/apache/tomee/security/servlet/JaccPermissionServletTest.java  | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tomee/tomee-security/src/test/java/org/apache/tomee/security/servlet/JaccPermissionServletTest.java b/tomee/tomee-security/src/test/java/org/apache/tomee/security/servlet/JaccPermissionServletTest.java
index 4f2ec76..bb632c3 100644
--- a/tomee/tomee-security/src/test/java/org/apache/tomee/security/servlet/JaccPermissionServletTest.java
+++ b/tomee/tomee-security/src/test/java/org/apache/tomee/security/servlet/JaccPermissionServletTest.java
@@ -84,7 +84,9 @@ public class JaccPermissionServletTest extends AbstractTomEESecurityTest {
     @ServletSecurity(value = @HttpConstraint(rolesAllowed = "Manager"),
                      httpMethodConstraints = { @HttpMethodConstraint("GET") })
     @TomcatUserIdentityStoreDefinition
-    @BasicAuthenticationMechanismDefinition
+    @BasicAuthenticationMechanismDefinition(
+        realmName = "${'fun EL realm'}" // constant so we could avoid EL but it's just for the test
+        )
     public static class ProtectedServlet extends HttpServlet {
 
         private static final long serialVersionUID = 1L;