You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by kw...@apache.org on 2022/01/13 14:53:12 UTC

[jackrabbit-filevault] branch bugfix/JCRVLT-593-prevent-duplicate-embeds created (now 3ceeef1)

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

kwin pushed a change to branch bugfix/JCRVLT-593-prevent-duplicate-embeds
in repository https://gitbox.apache.org/repos/asf/jackrabbit-filevault.git.


      at 3ceeef1  JCRVLT-593 mark embedded dependencies as scope "provided" as they should not be transitively inherited

This branch includes the following new commits:

     new 3ceeef1  JCRVLT-593 mark embedded dependencies as scope "provided" as they should not be transitively inherited

The 1 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.


[jackrabbit-filevault] 01/01: JCRVLT-593 mark embedded dependencies as scope "provided" as they should not be transitively inherited

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

kwin pushed a commit to branch bugfix/JCRVLT-593-prevent-duplicate-embeds
in repository https://gitbox.apache.org/repos/asf/jackrabbit-filevault.git

commit 3ceeef1365ed0ac227a327a4a000faef2d60beb2
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Thu Jan 13 15:53:00 2022 +0100

    JCRVLT-593 mark embedded dependencies as scope "provided" as they should
    not be transitively inherited
---
 vault-core/pom.xml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/vault-core/pom.xml b/vault-core/pom.xml
index 495994a..b10b249 100644
--- a/vault-core/pom.xml
+++ b/vault-core/pom.xml
@@ -171,12 +171,15 @@
             <groupId>org.glassfish.jaxb</groupId>
             <artifactId>txw2</artifactId>
             <version>2.3.2</version>
+            <!-- embedded, therefore not transitively relevant -->
+            <scope>provided</scope>
         </dependency>
-        <!-- embed -->
         <dependency>
             <groupId>com.fasterxml.woodstox</groupId>
             <artifactId>woodstox-core</artifactId>
             <version>6.1.1</version>
+            <!-- embedded, therefore not transitively relevant -->
+            <scope>provided</scope>
         </dependency>
         
         <!-- SLF4j / Log4j -->
@@ -226,6 +229,7 @@
             <groupId>org.apache.maven</groupId>
             <artifactId>maven-artifact</artifactId>
             <version>3.8.1</version>
+            <scope>provided</scope>
         </dependency>
         <!-- test deps -->
         <dependency>