You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by bd...@apache.org on 2023/06/14 03:58:33 UTC

[shiro] 01/01: Disable dependency convergence report

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

bdemers pushed a commit to branch report-fix
in repository https://gitbox.apache.org/repos/asf/shiro.git

commit 20514099116c29857f541fa99926e8fbaa00e357
Author: Brian Demers <bd...@apache.org>
AuthorDate: Tue Jun 13 23:58:09 2023 -0400

    Disable dependency convergence report
    
    This report fails to resolve the older ehcache deps
---
 pom.xml | 27 +++++++++++++++++++++++----
 1 file changed, 23 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index 9910c6555..7c674ad77 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1368,10 +1368,29 @@
             <plugin>
                 <artifactId>maven-project-info-reports-plugin</artifactId>
                 <version>3.4.3</version>
-                <!-- Disable, just to make it go faster -->
-                <configuration>
-                    <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
-                </configuration>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>ci-management</report>
+                            <report>dependencies</report>
+                            <!-- Disable broken report -->
+                            <!-- <report>dependency-convergence</report>-->
+                            <report>dependency-info</report>
+                            <report>dependency-management</report>
+                            <report>distribution-management</report>
+                            <report>index</report>
+                            <report>issue-management</report>
+                            <report>licenses</report>
+                            <report>mailing-lists</report>
+                            <report>modules</report>
+                            <report>plugin-management</report>
+                            <report>plugins</report>
+                            <report>scm</report>
+                            <report>summary</report>
+                            <report>team</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
             </plugin>
             <plugin>
                 <groupId>org.apache.rat</groupId>