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 /standalone/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 'standalone/pom.xml')
-rwxr-xr-x | standalone/pom.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/standalone/pom.xml b/standalone/pom.xml index 322ede7a..33cfdde2 100755 --- a/standalone/pom.xml +++ b/standalone/pom.xml @@ -60,6 +60,8 @@ <sdc.client.version>1.4.0</sdc.client.version> <sdc.tosca.version>1.6.3</sdc.tosca.version> + <dependency-list.file>direct-dependencies.txt</dependency-list.file> + </properties> <dependencyManagement> @@ -188,7 +190,24 @@ </repository> </repositories> + <build> + <pluginManagement> + <plugins> + <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> <plugin> <groupId>org.codehaus.mojo</groupId> |