Getting maven dependency information

I wonder if it is possible to get information about all the dependencies of the first level of my maven project. I need the following information: name, provider, version, license type, link URL, description. All this information is stored in pom.xml of each package. The problem is that we have a hierarchy of about 20 projects that have several hundred dependencies that are constantly changing.

I know about the maven dependency plugin . I ran mvn dependency:listand retrieved the list of packages using a combination of grepand seds. But I need license information and URLs. I can implement my own parser, which parses pom.xml for interesting packages and extracts this information, but it seems like something ready to use should exist.

+5
source share
2 answers

maven-project-info-report, . . . , maven ? , maven-license-plugin - , maven-license-verifier.

+1
+2

All Articles