You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by re...@apache.org on 2023/06/19 13:03:35 UTC

[jackrabbit-oak] branch OAK-10307 created (now ddd5ed8565)

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

reschke pushed a change to branch OAK-10307
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git


      at ddd5ed8565 OAK-10307: oak-shaded-guava leaks original guava as transitive dependency

This branch includes the following new commits:

     new ddd5ed8565 OAK-10307: oak-shaded-guava leaks original guava as transitive dependency

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-oak] 01/01: OAK-10307: oak-shaded-guava leaks original guava as transitive dependency

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

reschke pushed a commit to branch OAK-10307
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git

commit ddd5ed8565988c2e290d15b58411ae23c2ac01bb
Author: Julian Reschke <ju...@gmx.de>
AuthorDate: Mon Jun 19 14:03:20 2023 +0100

    OAK-10307: oak-shaded-guava leaks original guava as transitive dependency
---
 .gitignore               |  1 +
 oak-shaded-guava/pom.xml | 13 +++++++++++--
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index 210e226f41..d13284858c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,3 +11,4 @@ atlassian-ide-plugin.xml
 .checkstyle
 derby.log
 .java-version
+oak-shaded-guava/dependency-reduced-pom.xml
diff --git a/oak-shaded-guava/pom.xml b/oak-shaded-guava/pom.xml
index 9bc1a92a55..d169ed49cb 100644
--- a/oak-shaded-guava/pom.xml
+++ b/oak-shaded-guava/pom.xml
@@ -57,13 +57,22 @@
                   <shadedPattern>${pref}</shadedPattern>
                 </relocation>
               </relocations>
-              <createDependencyReducedPom>false</createDependencyReducedPom>
+              <createDependencyReducedPom>true</createDependencyReducedPom>
               <createSourcesJar>true</createSourcesJar>
             </configuration>
           </execution>
         </executions>
       </plugin>
-      <plugin>
+       <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>dependency-reduced-pom.xml</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+     <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
         <extensions>true</extensions>