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.apache.maven.resolver.examples.util.ReverseTreeRepositoryListener;
023import org.eclipse.aether.RepositorySystem;
024import org.eclipse.aether.RepositorySystemSession.CloseableSession;
025import org.eclipse.aether.artifact.Artifact;
026import org.eclipse.aether.artifact.DefaultArtifact;
027import org.eclipse.aether.collection.CollectRequest;
028import org.eclipse.aether.resolution.ArtifactDescriptorRequest;
029import org.eclipse.aether.resolution.ArtifactDescriptorResult;
030import org.eclipse.aether.util.graph.manager.DependencyManagerUtils;
031import org.eclipse.aether.util.graph.transformer.ConflictResolver;
032
033/**
034 * Example of building reverse dependency tree using custom {@link ReverseTreeRepositoryListener}.
035 */
036public class ReverseDependencyTree {
037
038    /**
039     * Main.
040     * @param args
041     * @throws Exception
042     */
043    public static void main(String[] args) throws Exception {
044        System.out.println("------------------------------------------------------------");
045        System.out.println(ReverseDependencyTree.class.getSimpleName());
046
047        try (RepositorySystem system = Booter.newRepositorySystem(Booter.selectFactory(args))) {
048            try (CloseableSession session = Booter.newRepositorySystemSession(system)
049                    .withRepositoryListener(new ReverseTreeRepositoryListener())
050                    .setConfigProperty(ConflictResolver.CONFIG_PROP_VERBOSE, true)
051                    .setConfigProperty(DependencyManagerUtils.CONFIG_PROP_VERBOSE, true)
052                    .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.setRequestContext("demo");
062                collectRequest.setRootArtifact(descriptorResult.getArtifact());
063                collectRequest.setDependencies(descriptorResult.getDependencies());
064                collectRequest.setManagedDependencies(descriptorResult.getManagedDependencies());
065                collectRequest.setRepositories(descriptorRequest.getRepositories());
066
067                system.collectDependencies(session, collectRequest);
068
069                // in this demo we are not interested in collect result,
070                // as all the "demo work" is done by installed ReverseTreeRepositoryListener
071            }
072        }
073    }
074}