View Javadoc
1   package org.apache.maven.shared.dependency.graph.internal;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *  http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import org.eclipse.aether.RepositoryException;
23  import org.eclipse.aether.util.graph.transformer.ConflictResolver.ConflictContext;
24  import org.eclipse.aether.util.graph.transformer.ConflictResolver.ScopeSelector;
25  import org.eclipse.aether.util.graph.transformer.JavaScopeSelector;
26  
27  import java.util.Arrays;
28  import java.util.Comparator;
29  import java.util.List;
30  
31  /**
32   * A JavaScopeSelector that keeps track of reduced scopes
33   * 
34   */
35  public class VerboseJavaScopeSelector extends ScopeSelector
36  {
37      public static final String REDUCED_SCOPE = "REDUCED_SCOPE";
38      
39      private final ScopeSelector scopeSelector = new JavaScopeSelector();
40  
41      @Override
42      public void selectScope( ConflictContext context )
43          throws RepositoryException
44      {
45          scopeSelector.selectScope( context );
46          
47          context.getItems().stream()
48              .flatMap( i -> i.getScopes().stream() )
49              .distinct()
50              .max( new ScopeComparator() )
51              .filter( s -> s != context.getScope() )
52              .ifPresent( s -> context.getWinner().getNode().setData( REDUCED_SCOPE, s ) );
53      }
54      
55      static class ScopeComparator implements Comparator<String>
56      {
57          List<String> orderedScopes = Arrays.asList( "compile", "runtime", "provided", "test" );
58  
59          @Override
60          public int compare( String lhs, String rhs )
61          {
62              return orderedScopes.indexOf( rhs ) - orderedScopes.indexOf( lhs );
63          }
64      }    
65  }