From e6e98c03160d2c63c52b7e51f675f0ec226df9d1 Mon Sep 17 00:00:00 2001 From: Hakan Tandogan Date: Tue, 26 Nov 2024 14:26:14 +0100 Subject: [PATCH] Show dependency information on build Automatically create dependency lists, helps to debug issues with third party libraries --- pom.xml | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 61 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7102e17..c8ab483 100644 --- a/pom.xml +++ b/pom.xml @@ -20,6 +20,7 @@ 22 22 UTF-8 + 3.5.0 @@ -79,4 +80,63 @@ - \ No newline at end of file + + + + + org.codehaus.mojo + exec-maven-plugin + ${exec-maven-plugin.version + + + + + + + org.apache.maven.plugins + maven-help-plugin + + + effective-pom + initialize + + effective-pom + + + true + ${project.build.directory}/effective-pom.xml + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + dependency-list + initialize + + list + + + true + ${project.build.directory}/dependencies-list.txt + + + + dependency-tree + initialize + + tree + + + ${project.build.directory}/dependencies-tree.txt + + + + + + +