summaryrefslogtreecommitdiffstats
path: root/odlparent/feature-repo-parent
diff options
context:
space:
mode:
authorTimoney, Dan (dt5972) <dtimoney@att.com>2019-12-10 09:18:51 -0500
committerTimoney, Dan (dt5972) <dtimoney@att.com>2019-12-10 16:45:15 -0500
commit94fcbc29eca4b30da5dc259e5b14d26cda8d8373 (patch)
tree798d599dd0e05e694d7e611c2a4abb4d9b20bb32 /odlparent/feature-repo-parent
parent008b52bffbe2bcb4cffd441ea6ac6693a353cf68 (diff)
Generate dependency list
Generate list of direct dependencies for repository and publish to Nexus. Change-Id: I9914756ddf8fe1dbab9f48d4de9249c319d28fc0 Issue-ID: CCSDK-1986 Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
Diffstat (limited to 'odlparent/feature-repo-parent')
-rw-r--r--odlparent/feature-repo-parent/pom.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/odlparent/feature-repo-parent/pom.xml b/odlparent/feature-repo-parent/pom.xml
index 49d79972..fd86f630 100644
--- a/odlparent/feature-repo-parent/pom.xml
+++ b/odlparent/feature-repo-parent/pom.xml
@@ -182,6 +182,8 @@
<tomcat-jdbc.version>9.0.27</tomcat-jdbc.version>
<jetty.version>9.4.12.v20180830</jetty.version>
<skip.karaf.featureTest>true</skip.karaf.featureTest>
+
+ <dependency-list.file>direct-dependencies.txt</dependency-list.file>
</properties>
<dependencyManagement>
@@ -624,6 +626,18 @@
<tag>${project.artifactId}-${project.version}</tag>
</configuration>
</plugin>
+ <plugin>
+ <groupId>com.github.ferstl</groupId>
+ <artifactId>depgraph-maven-plugin</artifactId>
+ <version>3.3.0</version>
+ <configuration>
+ <graphFormat>text</graphFormat>
+ <outputFileName>${dependency-list.file}</outputFileName>
+ <outputDirectory>${project.basedir}</outputDirectory>
+ <transitiveExcludes>*</transitiveExcludes>
+ <showVersions>true</showVersions>
+ </configuration>
+ </plugin>
</plugins>
</pluginManagement>
<plugins>