diff options
author | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-12-10 09:56:35 -0500 |
---|---|---|
committer | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-12-10 16:56:30 -0500 |
commit | 6fd84f1422338180459ca6442be96440f116da44 (patch) | |
tree | 39732d36c7b85f6f01b228ab1f19456549efb52e | |
parent | 16cb0dd6b9ebe62ee6cb03629d3529057c5d00d3 (diff) |
Generate dependency list
Generate list of direct dependencies for repository and publish to Nexus.
Change-Id: Ibce710d925b127353a7ca502809514c286969350
Issue-ID: CCSDK-1986
Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
-rwxr-xr-x | .gitignore | 1 | ||||
-rwxr-xr-x | pom.xml | 46 |
2 files changed, 45 insertions, 2 deletions
@@ -50,3 +50,4 @@ derby.log # Generated file sliPluginUtils/provider/testFileName +direct-dependencies.txt @@ -74,14 +74,56 @@ </executions> </plugin> </plugins> + </build> + </profile> - + <profile> + <id>dependency-list</id> + <build> + <plugins> + <plugin> + <groupId>com.github.ferstl</groupId> + <artifactId>depgraph-maven-plugin</artifactId> + <executions> + <execution> + <phase>validate</phase> + <inherited>false</inherited> + <goals> + <goal>aggregate</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <executions> + <execution> + <id>attach-artifacts</id> + <phase>package</phase> + <inherited>false</inherited> + <goals> + <goal>attach-artifact</goal> + </goals> + <configuration> + <artifacts> + <artifact> + <file>${dependency-list.file}</file> + <type>txt</type> + <classifier>dependencies</classifier> + </artifact> + </artifacts> + </configuration> + </execution> + </executions> + </plugin> + </plugins> </build> - </profile> </profiles> + <distributionManagement> <site> <id>ecomp-site</id> |