001/*
002 * Licensed to the Apache Software Foundation (ASF) under one
003 * or more contributor license agreements.  See the NOTICE file
004 * distributed with this work for additional information
005 * regarding copyright ownership.  The ASF licenses this file
006 * to you under the Apache License, Version 2.0 (the
007 * "License"); you may not use this file except in compliance
008 * with the License.  You may obtain a copy of the License at
009 *
010 *   http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing,
013 * software distributed under the License is distributed on an
014 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015 * KIND, either express or implied.  See the License for the
016 * specific language governing permissions and limitations
017 * under the License.
018 */
019package org.apache.maven.resolver.examples;
020
021import org.apache.maven.resolver.examples.util.Booter;
022import org.eclipse.aether.RepositorySystem;
023import org.eclipse.aether.RepositorySystemSession.CloseableSession;
024import org.eclipse.aether.RepositorySystemSession.SessionBuilder;
025import org.eclipse.aether.artifact.Artifact;
026import org.eclipse.aether.artifact.DefaultArtifact;
027import org.eclipse.aether.collection.CollectRequest;
028import org.eclipse.aether.collection.CollectResult;
029import org.eclipse.aether.resolution.ArtifactDescriptorRequest;
030import org.eclipse.aether.resolution.ArtifactDescriptorResult;
031import org.eclipse.aether.util.graph.manager.DependencyManagerUtils;
032import org.eclipse.aether.util.graph.transformer.ConflictResolver;
033
034/**
035 * Visualizes the transitive dependencies of an artifact similar to m2e's dependency hierarchy view.
036 */
037public class GetDependencyHierarchy {
038
039    /**
040     * Main.
041     * @param args
042     * @throws Exception
043     */
044    public static void main(String[] args) throws Exception {
045        System.out.println("------------------------------------------------------------");
046        System.out.println(GetDependencyHierarchy.class.getSimpleName());
047
048        try (RepositorySystem system = Booter.newRepositorySystem(Booter.selectFactory(args))) {
049            SessionBuilder sessionBuilder = Booter.newRepositorySystemSession(system);
050            sessionBuilder.setConfigProperty(ConflictResolver.CONFIG_PROP_VERBOSE, true);
051            sessionBuilder.setConfigProperty(DependencyManagerUtils.CONFIG_PROP_VERBOSE, true);
052            try (CloseableSession session = sessionBuilder.build()) {
053                Artifact artifact = new DefaultArtifact("org.apache.maven:maven-resolver-provider:3.6.1");
054
055                ArtifactDescriptorRequest descriptorRequest = new ArtifactDescriptorRequest();
056                descriptorRequest.setArtifact(artifact);
057                descriptorRequest.setRepositories(Booter.newRepositories(system, session));
058                ArtifactDescriptorResult descriptorResult = system.readArtifactDescriptor(session, descriptorRequest);
059
060                CollectRequest collectRequest = new CollectRequest();
061                collectRequest.setRootArtifact(descriptorResult.getArtifact());
062                collectRequest.setDependencies(descriptorResult.getDependencies());
063                collectRequest.setManagedDependencies(descriptorResult.getManagedDependencies());
064                collectRequest.setRepositories(descriptorRequest.getRepositories());
065
066                CollectResult collectResult = system.collectDependencies(session, collectRequest);
067
068                collectResult.getRoot().accept(Booter.DUMPER_SOUT);
069            }
070        }
071    }
072}