diff options
Diffstat (limited to 'springboot/springboot1/pom.xml')
-rwxr-xr-x | springboot/springboot1/pom.xml | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/springboot/springboot1/pom.xml b/springboot/springboot1/pom.xml index c6c2aea8..de72343e 100755 --- a/springboot/springboot1/pom.xml +++ b/springboot/springboot1/pom.xml @@ -100,6 +100,8 @@ <mariadb.connector.version>2.1.1</mariadb.connector.version> + <dependency-list.file>direct-dependencies.txt</dependency-list.file> + </properties> <dependencyManagement> @@ -577,7 +579,18 @@ </execution> </executions> </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> @@ -992,6 +1005,5 @@ </build> </profile> <!-- End of profiles from ONAP oparent --> - </profiles> </project> |