diff options
Diffstat (limited to 'springboot/springboot2/pom.xml')
-rwxr-xr-x | springboot/springboot2/pom.xml | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/springboot/springboot2/pom.xml b/springboot/springboot2/pom.xml index 13633f50..303e2c9c 100755 --- a/springboot/springboot2/pom.xml +++ b/springboot/springboot2/pom.xml @@ -127,6 +127,7 @@ <slf4j.version>1.7.25</slf4j.version> <testng.version>6.11</testng.version> <tomcat-jdbc.version>9.0.27</tomcat-jdbc.version> + <dependency-list.file>direct-dependencies.txt</dependency-list.file> </properties> <dependencyManagement> @@ -609,7 +610,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> @@ -1065,6 +1077,5 @@ </build> </profile> <!-- End of profiles from ONAP oparent --> - </profiles> </project> |