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

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


The following commit(s) were added to refs/heads/main by this push:
     new 27f8cf21a4 GH-1468: Improve exclusions due to overlapping dependencies
     new 736b4112b7 Merge pull request #1469 from afs/pom-exclusions
27f8cf21a4 is described below

commit 27f8cf21a4e2c52b74ffbdebfc3f9c2d97110377
Author: Andy Seaborne <[email protected]>
AuthorDate: Tue Aug 2 11:41:24 2022 +0100

    GH-1468: Improve exclusions due to overlapping dependencies
---
 pom.xml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/pom.xml b/pom.xml
index f57da968fa..cca8aa493b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -343,6 +343,10 @@
             <groupId>javax.servlet</groupId>
             <artifactId>javax.servlet-api</artifactId>
           </exclusion>
+          <exclusion>
+            <groupId>org.slf4j</groupId>
+            <artifactId>*</artifactId>
+          </exclusion>
         </exclusions>
       </dependency>
 
@@ -394,6 +398,7 @@
         <groupId>com.github.jsonld-java</groupId>
         <artifactId>jsonld-java</artifactId>
         <version>${ver.jsonldjava}</version>
+
         <exclusions>
           <exclusion>
             <groupId>com.fasterxml.jackson.core</groupId>
@@ -407,6 +412,15 @@
             <groupId>commons-logging</groupId>
             <artifactId>commons-logging</artifactId>
           </exclusion>
+          <exclusion>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+          </exclusion>
+          <exclusion>
+            <groupId>org.slf4j</groupId>
+            <artifactId>*</artifactId>
+          </exclusion>
+
           <!-- Exclude so we use our choice of versions -->
           <exclusion>
             <groupId>org.apache.httpcomponents</groupId>

Reply via email to