In my plugin I need to process the dependency hierarchy and get information (groupId, artifactId, version etc) about each dependency and if it was excluded. What is the best way to do this?
Eclipse pom. xml “Dependency Hierarchy” tab shows the dependency tree of the project. It has two sides - the left side shows verbose output and the right side shows the resolved dependencies. We can use the “Filter” option to look for a specific dependency.
In the POM, right-click anywhere in the editor to open the context menu and select Maven | Show Dependencies. Alternatively, press Ctrl+Alt+Shift+U or Ctrl+Alt+U . In the diagram window, IntelliJ IDEA displays the sub project and all its dependencies including the transitive ones.
A project's dependency tree can be filtered to locate specific dependencies. For example, to find out why Velocity is being used by the Maven Dependency Plugin, we can execute the following in the project's directory: mvn dependency:tree -Dincludes=velocity:velocity.
The dependency plugin provides the capability to manipulate artifacts. It can copy and/or unpack artifacts from local or remote repositories to a specified location.
The dependency plugin has the tree goal that does most of this work. It processes a MavenProject
using the DependencyTreeBuilder
, this returns a DependencyNode
with hierarchical information about the resolved dependencies (and their transitive dependencies).
You can copy much of the code directly from the TreeMojo. It uses the CollectingDependencyNodeVisitor
to traverse the tree and produce a List
of all the nodes.
You can access the Artifact
for the node by calling getArtifact()
, then get the artifact information as needed. To get the exclusion reason, DependencyNode
has a getState()
method that returns an int indicating if the dependency has been included, or if not what the reason for omitting it was (there are constants in the DependencyNode class to check the return value against)
//All components need this annotation, omitted for brevity /** * @component * @required * @readonly */ private ArtifactFactory artifactFactory; private ArtifactMetadataSource artifactMetadataSource; private ArtifactCollector artifactCollector; private DependencyTreeBuilder treeBuilder; private ArtifactRepository localRepository; private MavenProject project; public void execute() throws MojoExecutionException, MojoFailureException { try { ArtifactFilter artifactFilter = new ScopeArtifactFilter(null); DependencyNode rootNode = treeBuilder.buildDependencyTree(project, localRepository, artifactFactory, artifactMetadataSource, artifactFilter, artifactCollector); CollectingDependencyNodeVisitor visitor = new CollectingDependencyNodeVisitor(); rootNode.accept(visitor); List<DependencyNode> nodes = visitor.getNodes(); for (DependencyNode dependencyNode : nodes) { int state = dependencyNode.getState(); Artifact artifact = dependencyNode.getArtifact(); if(state == DependencyNode.INCLUDED) { //... } } } catch (DependencyTreeBuilderException e) { // TODO handle exception e.printStackTrace(); } }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With