diff options
author | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-12-10 09:18:51 -0500 |
---|---|---|
committer | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-12-10 16:45:15 -0500 |
commit | 94fcbc29eca4b30da5dc259e5b14d26cda8d8373 (patch) | |
tree | 798d599dd0e05e694d7e611c2a4abb4d9b20bb32 /odlparent/karaf4-parent/pom.xml | |
parent | 008b52bffbe2bcb4cffd441ea6ac6693a353cf68 (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/karaf4-parent/pom.xml')
-rw-r--r-- | odlparent/karaf4-parent/pom.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/odlparent/karaf4-parent/pom.xml b/odlparent/karaf4-parent/pom.xml index 61c9d454..edba6efe 100644 --- a/odlparent/karaf4-parent/pom.xml +++ b/odlparent/karaf4-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> |