You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by st...@apache.org on 2021/12/14 21:36:19 UTC

[openwebbeans] branch master updated (d23b7cd -> 0ff3406)

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

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


    from d23b7cd  OWB-1398 filter only once
     new e2794b6  OWB-1396 upgrade to log4j2 2.16.0
     new 0ff3406  OWB-1398 change back method name for API compat

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:
 webbeans-gradle/pom.xml                                               | 2 +-
 .../apache/webbeans/corespi/scanner/AbstractMetaDataDiscovery.java    | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

[openwebbeans] 01/02: OWB-1396 upgrade to log4j2 2.16.0

Posted by st...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit e2794b6e9f557991640f5b43da54a5631b630d23
Author: Mark Struberg <st...@apache.org>
AuthorDate: Tue Dec 14 22:01:07 2021 +0100

    OWB-1396 upgrade to log4j2 2.16.0
---
 webbeans-gradle/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/webbeans-gradle/pom.xml b/webbeans-gradle/pom.xml
index e7ba50e..b53df1d 100644
--- a/webbeans-gradle/pom.xml
+++ b/webbeans-gradle/pom.xml
@@ -57,7 +57,7 @@
     <dependency>
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-core</artifactId>
-      <version>2.15.0</version>
+      <version>2.16.0</version>
       <scope>provided</scope>
       <optional>true</optional>
     </dependency>

[openwebbeans] 02/02: OWB-1398 change back method name for API compat

Posted by st...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 0ff340622599dea85f52fafb361814ac9f4f5fd7
Author: Mark Struberg <st...@apache.org>
AuthorDate: Tue Dec 14 22:35:11 2021 +0100

    OWB-1398 change back method name for API compat
---
 .../apache/webbeans/corespi/scanner/AbstractMetaDataDiscovery.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/webbeans-impl/src/main/java/org/apache/webbeans/corespi/scanner/AbstractMetaDataDiscovery.java b/webbeans-impl/src/main/java/org/apache/webbeans/corespi/scanner/AbstractMetaDataDiscovery.java
index 812c915..64c7838 100644
--- a/webbeans-impl/src/main/java/org/apache/webbeans/corespi/scanner/AbstractMetaDataDiscovery.java
+++ b/webbeans-impl/src/main/java/org/apache/webbeans/corespi/scanner/AbstractMetaDataDiscovery.java
@@ -325,7 +325,7 @@ public abstract class AbstractMetaDataDiscovery implements BdaScannerService
         String path = url.toExternalForm();   
         // TODO: should extract file path and test file.getName(), not the whole path
         // + should be configurable
-        int knownJarIdx = getKnownJarIdx(path);
+        int knownJarIdx = isExcludedJar(path);
         // -Prun-its openwebbeans-tomcat7 in path but WEB-INF/classes
         if (knownJarIdx > 0 && knownJarIdx < path.indexOf(".jar"))
         {
@@ -353,7 +353,7 @@ public abstract class AbstractMetaDataDiscovery implements BdaScannerService
         return false;
     }
 
-    protected int getKnownJarIdx(String path)
+    protected int isExcludedJar(String path)
     {
         // lazy init - required when using DS CdiTestRunner
         initScanningExcludes();