Coverage Report - org.apache.maven.plugins.shade.mojo.ShadeMojo
 
Classes in this File Line Coverage Branch Coverage Complexity
ShadeMojo
0%
0/233
0%
0/116
6
 
 1  
 package org.apache.maven.plugins.shade.mojo;
 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 java.io.File;
 23  
 import java.io.FileInputStream;
 24  
 import java.io.FileOutputStream;
 25  
 import java.io.IOException;
 26  
 import java.io.Writer;
 27  
 import java.util.ArrayList;
 28  
 import java.util.Arrays;
 29  
 import java.util.Collections;
 30  
 import java.util.HashMap;
 31  
 import java.util.HashSet;
 32  
 import java.util.Iterator;
 33  
 import java.util.LinkedHashSet;
 34  
 import java.util.List;
 35  
 import java.util.Map;
 36  
 import java.util.Set;
 37  
 
 38  
 import org.apache.maven.artifact.Artifact;
 39  
 import org.apache.maven.artifact.factory.ArtifactFactory;
 40  
 import org.apache.maven.artifact.metadata.ArtifactMetadataSource;
 41  
 import org.apache.maven.artifact.repository.ArtifactRepository;
 42  
 import org.apache.maven.artifact.resolver.ArtifactCollector;
 43  
 import org.apache.maven.artifact.resolver.ArtifactNotFoundException;
 44  
 import org.apache.maven.artifact.resolver.ArtifactResolutionException;
 45  
 import org.apache.maven.artifact.resolver.ArtifactResolver;
 46  
 import org.apache.maven.model.Dependency;
 47  
 import org.apache.maven.model.Exclusion;
 48  
 import org.apache.maven.model.Model;
 49  
 import org.apache.maven.plugin.AbstractMojo;
 50  
 import org.apache.maven.plugin.MojoExecutionException;
 51  
 import org.apache.maven.plugins.shade.Shader;
 52  
 import org.apache.maven.plugins.shade.filter.SimpleFilter;
 53  
 import org.apache.maven.plugins.shade.pom.PomWriter;
 54  
 import org.apache.maven.plugins.shade.relocation.SimpleRelocator;
 55  
 import org.apache.maven.plugins.shade.resource.ResourceTransformer;
 56  
 import org.apache.maven.project.MavenProject;
 57  
 import org.apache.maven.project.MavenProjectBuilder;
 58  
 import org.apache.maven.project.MavenProjectHelper;
 59  
 import org.apache.maven.project.ProjectBuildingException;
 60  
 import org.apache.maven.shared.dependency.tree.DependencyNode;
 61  
 import org.apache.maven.shared.dependency.tree.DependencyTreeBuilder;
 62  
 import org.apache.maven.shared.dependency.tree.DependencyTreeBuilderException;
 63  
 import org.codehaus.plexus.util.FileUtils;
 64  
 import org.codehaus.plexus.util.IOUtil;
 65  
 import org.codehaus.plexus.util.WriterFactory;
 66  
 
 67  
 /**
 68  
  * Mojo that performs shading delegating to the Shader component.
 69  
  *
 70  
  * @author Jason van Zyl
 71  
  * @author Mauro Talevi
 72  
  * @author David Blevins
 73  
  * @author Hiram Chirino
 74  
  * @goal shade
 75  
  * @phase package
 76  
  * @requiresDependencyResolution runtime
 77  
  */
 78  0
 public class ShadeMojo
 79  
     extends AbstractMojo
 80  
 {
 81  
     /**
 82  
      * @parameter default-value="${project}"
 83  
      * @readonly
 84  
      * @required
 85  
      */
 86  
     private MavenProject project;
 87  
 
 88  
     /**
 89  
      * @component
 90  
      * @required
 91  
      * @readonly
 92  
      */
 93  
     private MavenProjectHelper projectHelper;
 94  
 
 95  
     /**
 96  
      * @component
 97  
      * @required
 98  
      * @readonly
 99  
      */
 100  
     private Shader shader;
 101  
 
 102  
     /**
 103  
      * The dependency tree builder to use.
 104  
      *
 105  
      * @component
 106  
      * @required
 107  
      * @readonly
 108  
      */
 109  
     private DependencyTreeBuilder dependencyTreeBuilder;
 110  
 
 111  
     /**
 112  
      * ProjectBuilder, needed to create projects from the artifacts.
 113  
      *
 114  
      * @component
 115  
      * @required
 116  
      * @readonly
 117  
      */
 118  
     private MavenProjectBuilder mavenProjectBuilder;
 119  
 
 120  
     /**
 121  
      * The artifact metadata source to use.
 122  
      *
 123  
      * @component
 124  
      * @required
 125  
      * @readonly
 126  
      */
 127  
     private ArtifactMetadataSource artifactMetadataSource;
 128  
 
 129  
     /**
 130  
      * The artifact collector to use.
 131  
      *
 132  
      * @component
 133  
      * @required
 134  
      * @readonly
 135  
      */
 136  
     private ArtifactCollector artifactCollector;
 137  
 
 138  
     /**
 139  
      * Remote repositories which will be searched for source attachments.
 140  
      *
 141  
      * @parameter default-value="${project.remoteArtifactRepositories}"
 142  
      * @required
 143  
      * @readonly
 144  
      */
 145  
     protected List remoteArtifactRepositories;
 146  
 
 147  
     /**
 148  
      * Local maven repository.
 149  
      *
 150  
      * @parameter default-value="${localRepository}"
 151  
      * @required
 152  
      * @readonly
 153  
      */
 154  
     protected ArtifactRepository localRepository;
 155  
 
 156  
     /**
 157  
      * Artifact factory, needed to download source jars for inclusion in classpath.
 158  
      *
 159  
      * @component
 160  
      * @required
 161  
      * @readonly
 162  
      */
 163  
     protected ArtifactFactory artifactFactory;
 164  
 
 165  
     /**
 166  
      * Artifact resolver, needed to download source jars for inclusion in classpath.
 167  
      *
 168  
      * @component
 169  
      * @required
 170  
      * @readonly
 171  
      */
 172  
     protected ArtifactResolver artifactResolver;
 173  
 
 174  
     /**
 175  
      * Artifacts to include/exclude from the final artifact. Artifacts are denoted by composite identifiers of the
 176  
      * general form <code>groupId:artifactId:type:classifier</code>. Since version 1.3, the wildcard characters '*' and '?' can be used
 177  
      * within the sub parts of those composite identifiers to do pattern matching. For convenience, the syntax
 178  
      * <code>groupId</code> is equivalent to <code>groupId:*:*:*</code>, <code>groupId:artifactId</code> is equivalent
 179  
      * to <code>groupId:artifactId:*:*</code> and <code>groupId:artifactId:classifier</code> is equivalent to
 180  
      * <code>groupId:artifactId:*:classifier</code>.
 181  
      * 
 182  
      * @parameter
 183  
      */
 184  
     private ArtifactSet artifactSet;
 185  
 
 186  
     /**
 187  
      * Packages to be relocated.
 188  
      *
 189  
      * @parameter
 190  
      */
 191  
     private PackageRelocation[] relocations;
 192  
 
 193  
     /**
 194  
      * Resource transformers to be used.
 195  
      *
 196  
      * @parameter
 197  
      */
 198  
     private ResourceTransformer[] transformers;
 199  
 
 200  
     /**
 201  
      * Archive Filters to be used. Allows you to specify an artifact in the form of a composite identifier as used by
 202  
      * {@link #artifactSet} and a set of include/exclude file patterns for filtering which contents of the archive are
 203  
      * added to the shaded jar. From a logical perspective, includes are processed before excludes, thus it's possible
 204  
      * to use an include to collect a set of files from the archive then use excludes to further reduce the set. By
 205  
      * default, all files are included and no files are excluded. If multiple filters apply to an artifact, the
 206  
      * intersection of the matched files will be included in the final JAR.
 207  
      * 
 208  
      * @parameter
 209  
      */
 210  
     private ArchiveFilter[] filters;
 211  
 
 212  
     /**
 213  
      * The destination directory for the shaded artifact.
 214  
      *
 215  
      * @parameter default-value="${project.build.directory}"
 216  
      */
 217  
     private File outputDirectory;
 218  
 
 219  
     /**
 220  
      * The name of the shaded artifactId.
 221  
      * 
 222  
      * If you like to change the name of the native artifact, you may use the &lt;build>&lt;finalName> setting.
 223  
      * If this is set to something different than &lt;build>&lt;finalName>, no file replacement
 224  
      * will be performed, even if shadedArtifactAttached is being used.
 225  
      *
 226  
      * @parameter expression="${finalName}"
 227  
      */
 228  
     private String finalName;
 229  
 
 230  
     /**
 231  
      * The name of the shaded artifactId. So you may want to use a different artifactId and keep
 232  
      * the standard version. If the original artifactId was "foo" then the final artifact would
 233  
      * be something like foo-1.0.jar. So if you change the artifactId you might have something
 234  
      * like foo-special-1.0.jar.
 235  
      *
 236  
      * @parameter expression="${shadedArtifactId}" default-value="${project.artifactId}"
 237  
      */
 238  
     private String shadedArtifactId;
 239  
 
 240  
     /**
 241  
      * If specified, this will include only artifacts which have groupIds which
 242  
      * start with this.
 243  
      *
 244  
      * @parameter expression="${shadedGroupFilter}"
 245  
      */
 246  
     private String shadedGroupFilter;
 247  
 
 248  
     /**
 249  
      * Defines whether the shaded artifact should be attached as classifier to
 250  
      * the original artifact.  If false, the shaded jar will be the main artifact
 251  
      * of the project
 252  
      *
 253  
      * @parameter expression="${shadedArtifactAttached}" default-value="false"
 254  
      */
 255  
     private boolean shadedArtifactAttached;
 256  
 
 257  
     /**
 258  
      * Flag whether to generate a simplified POM for the shaded artifact. If set to <code>true</code>, dependencies that
 259  
      * have been included into the uber JAR will be removed from the <code>&lt;dependencies&gt;</code> section of the
 260  
      * generated POM. The reduced POM will be named <code>dependency-reduced-pom.xml</code> and is stored into the same
 261  
      * directory as the shaded artifact.
 262  
      *
 263  
      * @parameter expression="${createDependencyReducedPom}" default-value="true"
 264  
      */
 265  
     private boolean createDependencyReducedPom;
 266  
 
 267  
     /**
 268  
      * When true, dependencies are kept in the pom but with scope 'provided'; when false,
 269  
      * the dependency is removed.
 270  
      *
 271  
      * @parameter expression="${keepDependenciesWithProvidedScope}" default-value="false"
 272  
      */
 273  
     private boolean keepDependenciesWithProvidedScope;
 274  
 
 275  
     /**
 276  
      * When true, transitive deps of removed dependencies are promoted to direct dependencies.
 277  
      * This should allow the drop in replacement of the removed deps with the new shaded
 278  
      * jar and everything should still work.
 279  
      *
 280  
      * @parameter expression="${promoteTransitiveDependencies}" default-value="false"
 281  
      */
 282  
     private boolean promoteTransitiveDependencies;
 283  
 
 284  
     /**
 285  
      * The name of the classifier used in case the shaded artifact is attached.
 286  
      *
 287  
      * @parameter expression="${shadedClassifierName}" default-value="shaded"
 288  
      */
 289  
     private String shadedClassifierName;
 290  
 
 291  
     /**
 292  
      * When true, it will attempt to create a sources jar as well
 293  
      *
 294  
      * @parameter expression="${createSourcesJar}" default-value="false"
 295  
      */
 296  
     private boolean createSourcesJar;
 297  
 
 298  
     /**
 299  
      * The path to the output file for the shaded artifact. When this parameter is set, the created archive will neither
 300  
      * replace the project's main artifact nor will it be attached. Hence, this parameter causes the parameters
 301  
      * {@link #finalName}, {@link #shadedArtifactAttached}, {@link #shadedClassifierName} and
 302  
      * {@link #createDependencyReducedPom} to be ignored when used.
 303  
      * 
 304  
      * @parameter
 305  
      * @since 1.3
 306  
      */
 307  
     private File outputFile;
 308  
 
 309  
     /** @throws MojoExecutionException  */
 310  
     public void execute()
 311  
         throws MojoExecutionException
 312  
     {
 313  0
         Set artifacts = new LinkedHashSet();
 314  0
         Set artifactIds = new LinkedHashSet();
 315  0
         Set sourceArtifacts = new LinkedHashSet();
 316  
 
 317  0
         ArtifactSelector artifactSelector = new ArtifactSelector( artifactSet, shadedGroupFilter );
 318  
 
 319  0
         if ( artifactSelector.isSelected( project.getArtifact() ) && !"pom".equals( project.getArtifact().getType() ) )
 320  
         {
 321  0
             if ( project.getArtifact().getFile() == null )
 322  
             {
 323  0
                 getLog().error( "The project main artifact does not exist. This could have the following" );
 324  0
                 getLog().error( "reasons:" );
 325  0
                 getLog().error( "- You have invoked the goal directly from the command line. This is not" );
 326  0
                 getLog().error( "  supported. Please add the goal to the default lifecycle via an" );
 327  0
                 getLog().error( "  <execution> element in your POM and use \"mvn package\" to have it run." );
 328  0
                 getLog().error( "- You have bound the goal to a lifecycle phase before \"package\". Please" );
 329  0
                 getLog().error( "  remove this binding from your POM such that the goal will be run in" );
 330  0
                 getLog().error( "  the proper phase." );
 331  0
                 throw new MojoExecutionException( "Failed to create shaded artifact.",
 332  
                                                   new IllegalStateException( "Project main artifact does not exist." ) );
 333  
             }
 334  
 
 335  0
             artifacts.add( project.getArtifact().getFile() );
 336  
 
 337  0
             if ( createSourcesJar )
 338  
             {
 339  0
                 File file = shadedSourcesArtifactFile();
 340  0
                 if ( file.isFile() )
 341  
                 {
 342  0
                     sourceArtifacts.add( file );
 343  
                 }
 344  
             }
 345  
         }
 346  
 
 347  0
         for ( Iterator it = project.getArtifacts().iterator(); it.hasNext(); )
 348  
         {
 349  0
             Artifact artifact = (Artifact) it.next();
 350  
 
 351  0
             if ( !artifactSelector.isSelected( artifact ) )
 352  
             {
 353  0
                 getLog().info( "Excluding " + artifact.getId() + " from the shaded jar." );
 354  
 
 355  0
                 continue;
 356  
             }
 357  
 
 358  0
             if ( "pom".equals( artifact.getType() ) )
 359  
             {
 360  0
                 getLog().info( "Skipping pom dependency " + artifact.getId() + " in the shaded jar." );
 361  0
                 continue;
 362  
             }
 363  
 
 364  0
             getLog().info( "Including " + artifact.getId() + " in the shaded jar." );
 365  
 
 366  0
             artifacts.add( artifact.getFile() );
 367  
 
 368  0
             artifactIds.add( getId( artifact ) );
 369  
 
 370  0
             if ( createSourcesJar )
 371  
             {
 372  0
                 File file = resolveArtifactSources( artifact );
 373  0
                 if ( file != null )
 374  
                 {
 375  0
                     sourceArtifacts.add( file );
 376  
                 }
 377  
             }
 378  0
         }
 379  
 
 380  
 
 381  0
         File outputJar = ( outputFile != null ) ? outputFile : shadedArtifactFileWithClassifier();
 382  0
         File sourcesJar = shadedSourceArtifactFileWithClassifier();
 383  
 
 384  
         // Now add our extra resources
 385  
         try
 386  
         {
 387  0
             List filters = getFilters();
 388  
 
 389  0
             List relocators = getRelocators();
 390  
 
 391  0
             List resourceTransformers = getResourceTransformers();
 392  
 
 393  0
             shader.shade( artifacts, outputJar, filters, relocators, resourceTransformers );
 394  
 
 395  0
             if ( createSourcesJar )
 396  
             {
 397  0
                 shader.shade( sourceArtifacts, sourcesJar, filters, relocators, resourceTransformers );
 398  
             }
 399  
 
 400  0
             if ( outputFile == null )
 401  
             {
 402  0
                 boolean renamed = false;
 403  
 
 404  
                 // rename the output file if a specific finalName is set
 405  
                 // but don't rename if the finalName is the <build><finalName>
 406  
                 // because this will be handled implicitely later
 407  0
                 if ( finalName != null && finalName.length() > 0 && !finalName.equals( project.getBuild().getFinalName() ) )
 408  
                 {
 409  0
                     String finalFileName = finalName + "." + project.getArtifact().getArtifactHandler().getExtension();
 410  0
                     File finalFile = new File( outputDirectory, finalFileName );
 411  0
                     replaceFile( finalFile, outputJar );
 412  0
                     outputJar = finalFile;
 413  
 
 414  0
                     renamed = true;
 415  
                 }
 416  
 
 417  0
                 if ( shadedArtifactAttached )
 418  
                 {
 419  0
                     getLog().info( "Attaching shaded artifact." );
 420  0
                     projectHelper.attachArtifact( project, project.getArtifact().getType(), shadedClassifierName,
 421  
                                                   outputJar );
 422  0
                     if ( createSourcesJar )
 423  
                     {
 424  0
                         projectHelper.attachArtifact( project, "jar", shadedClassifierName + "-sources", sourcesJar );
 425  
                     }
 426  
                 }
 427  0
                 else if ( !renamed )
 428  
                 {
 429  0
                     getLog().info( "Replacing original artifact with shaded artifact." );
 430  0
                     File originalArtifact = project.getArtifact().getFile();
 431  0
                     replaceFile( originalArtifact, outputJar );
 432  
 
 433  0
                     if ( createSourcesJar )
 434  
                     {
 435  0
                         File shadedSources = shadedSourcesArtifactFile();
 436  
 
 437  0
                         replaceFile( shadedSources, sourcesJar );
 438  
 
 439  0
                         projectHelper.attachArtifact( project, "jar", "sources", shadedSources );
 440  
                     }
 441  
 
 442  0
                     if ( createDependencyReducedPom )
 443  
                     {
 444  0
                         createDependencyReducedPom( artifactIds );
 445  
                     }
 446  
                 }
 447  
             }
 448  
         }
 449  0
         catch ( Exception e )
 450  
         {
 451  0
             throw new MojoExecutionException( "Error creating shaded jar: " + e.getMessage(), e );
 452  0
         }
 453  0
     }
 454  
 
 455  
     private void replaceFile( File oldFile, File newFile ) throws MojoExecutionException
 456  
     {
 457  0
         getLog().info( "Replacing " + oldFile + " with " + newFile );
 458  
 
 459  0
         File origFile = new File( outputDirectory, "original-" + oldFile.getName() );
 460  0
         if ( oldFile.exists() && !oldFile.renameTo( origFile ) )
 461  
         {
 462  
             //try a gc to see if an unclosed stream needs garbage collecting
 463  0
             System.gc();
 464  0
             System.gc();
 465  
 
 466  0
             if ( !oldFile.renameTo( origFile ) )
 467  
             {
 468  
                 // Still didn't work.   We'll do a copy
 469  
                 try
 470  
                 {
 471  0
                     FileOutputStream fout = new FileOutputStream( origFile );
 472  0
                     FileInputStream fin = new FileInputStream( oldFile );
 473  
                     try
 474  
                     {
 475  0
                         IOUtil.copy( fin, fout );
 476  
                     }
 477  
                     finally
 478  
                     {
 479  0
                         IOUtil.close( fin );
 480  0
                         IOUtil.close( fout );
 481  0
                     }
 482  
                 }
 483  0
                 catch ( IOException ex )
 484  
                 {
 485  
                     //kind of ignorable here.   We're just trying to save the original
 486  0
                     getLog().warn( ex );
 487  0
                 }
 488  
             }
 489  
         }
 490  0
         if ( !newFile.renameTo( oldFile ) )
 491  
         {
 492  
             //try a gc to see if an unclosed stream needs garbage collecting
 493  0
             System.gc();
 494  0
             System.gc();
 495  
 
 496  0
             if ( !newFile.renameTo( oldFile ) )
 497  
             {
 498  
                 // Still didn't work.   We'll do a copy
 499  
                 try
 500  
                 {
 501  0
                     FileOutputStream fout = new FileOutputStream( oldFile );
 502  0
                     FileInputStream fin = new FileInputStream( newFile );
 503  
                     try
 504  
                     {
 505  0
                         IOUtil.copy( fin, fout );
 506  
                     }
 507  
                     finally
 508  
                     {
 509  0
                         IOUtil.close( fin );
 510  0
                         IOUtil.close( fout );
 511  0
                     }
 512  
                 }
 513  0
                 catch ( IOException ex )
 514  
                 {
 515  0
                     throw new MojoExecutionException( "Could not replace original artifact with shaded artifact!", ex );
 516  0
                 }
 517  
             }
 518  
         }
 519  0
     }
 520  
 
 521  
     private File resolveArtifactSources( Artifact artifact )
 522  
     {
 523  
 
 524  0
         Artifact resolvedArtifact =
 525  
             artifactFactory.createArtifactWithClassifier( artifact.getGroupId(),
 526  
                                                           artifact.getArtifactId(),
 527  
                                                           artifact.getVersion(),
 528  
                                                           "java-source",
 529  
                                                           "sources" );
 530  
 
 531  
         try
 532  
         {
 533  0
             artifactResolver.resolve( resolvedArtifact, remoteArtifactRepositories, localRepository );
 534  
         }
 535  0
         catch ( ArtifactNotFoundException e )
 536  
         {
 537  
             // ignore, the jar has not been found
 538  
         }
 539  0
         catch ( ArtifactResolutionException e )
 540  
         {
 541  0
             getLog().warn( "Could not get sources for " + artifact );
 542  0
         }
 543  
 
 544  0
         if ( resolvedArtifact.isResolved() )
 545  
         {
 546  0
             return resolvedArtifact.getFile();
 547  
         }
 548  0
         return null;
 549  
     }
 550  
 
 551  
     private List getRelocators()
 552  
     {
 553  0
         List relocators = new ArrayList();
 554  
 
 555  0
         if ( relocations == null )
 556  
         {
 557  0
             return relocators;
 558  
         }
 559  
 
 560  0
         for ( int i = 0; i < relocations.length; i++ )
 561  
         {
 562  0
             PackageRelocation r = relocations[i];
 563  
 
 564  0
             relocators.add( new SimpleRelocator( r.getPattern(), r.getShadedPattern(), r.getExcludes() ) );
 565  
         }
 566  
 
 567  0
         return relocators;
 568  
     }
 569  
 
 570  
     private List getResourceTransformers()
 571  
     {
 572  0
         if ( transformers == null )
 573  
         {
 574  0
             return Collections.EMPTY_LIST;
 575  
         }
 576  
 
 577  0
         return Arrays.asList( transformers );
 578  
     }
 579  
 
 580  
     private List getFilters()
 581  
     {
 582  0
         List filters = new ArrayList();
 583  
 
 584  0
         if ( this.filters == null || this.filters.length <= 0 )
 585  
         {
 586  0
             return filters;
 587  
         }
 588  
 
 589  0
         Map artifacts = new HashMap();
 590  
 
 591  0
         artifacts.put( project.getArtifact(), new ArtifactId( project.getArtifact() ) );
 592  
 
 593  0
         for ( Iterator it = project.getArtifacts().iterator(); it.hasNext(); )
 594  
         {
 595  0
             Artifact artifact = (Artifact) it.next();
 596  
 
 597  0
             artifacts.put( artifact, new ArtifactId( artifact ) );
 598  0
         }
 599  
 
 600  0
         for ( int i = 0; i < this.filters.length; i++ )
 601  
         {
 602  0
             ArchiveFilter filter = this.filters[i];
 603  
 
 604  0
             ArtifactId pattern = new ArtifactId( filter.getArtifact() );
 605  
 
 606  0
             Set jars = new HashSet();
 607  
 
 608  0
             for ( Iterator it = artifacts.entrySet().iterator(); it.hasNext(); )
 609  
             {
 610  0
                 Map.Entry entry = (Map.Entry) it.next();
 611  
 
 612  0
                 if ( ( (ArtifactId) entry.getValue() ).matches( pattern ) )
 613  
                 {
 614  0
                     jars.add( ( (Artifact) entry.getKey() ).getFile() );
 615  
                 }
 616  0
             }
 617  
 
 618  0
             if ( jars.isEmpty() )
 619  
             {
 620  0
                 getLog().info( "No artifact matching filter " + filter.getArtifact() );
 621  
 
 622  0
                 continue;
 623  
             }
 624  
 
 625  0
             filters.add( new SimpleFilter( jars, filter.getIncludes(), filter.getExcludes() ) );
 626  
 
 627  
         }
 628  
 
 629  0
         return filters;
 630  
     }
 631  
 
 632  
     private File shadedArtifactFileWithClassifier()
 633  
     {
 634  0
         Artifact artifact = project.getArtifact();
 635  0
         final String shadedName =
 636  
             shadedArtifactId + "-" + artifact.getVersion() + "-" + shadedClassifierName + "."
 637  
                 + artifact.getArtifactHandler().getExtension();
 638  0
         return new File( outputDirectory, shadedName );
 639  
     }
 640  
 
 641  
     private File shadedSourceArtifactFileWithClassifier()
 642  
     {
 643  0
         Artifact artifact = project.getArtifact();
 644  0
         final String shadedName =
 645  
             shadedArtifactId + "-" + artifact.getVersion() + "-" + shadedClassifierName + "-sources."
 646  
                 + artifact.getArtifactHandler().getExtension();
 647  0
         return new File( outputDirectory, shadedName );
 648  
     }
 649  
 
 650  
     private File shadedSourcesArtifactFile()
 651  
     {
 652  0
         Artifact artifact = project.getArtifact();
 653  
 
 654  
         String shadedName;
 655  
 
 656  0
         if ( project.getBuild().getFinalName() != null )
 657  
         {
 658  0
             shadedName = project.getBuild().getFinalName() + "-sources." + artifact.getArtifactHandler().getExtension();
 659  
         }
 660  
         else
 661  
         {
 662  0
             shadedName = shadedArtifactId + "-" + artifact.getVersion() + "-sources."
 663  
                 + artifact.getArtifactHandler().getExtension();
 664  
         }
 665  
 
 666  0
         return new File( outputDirectory, shadedName );
 667  
     }
 668  
 
 669  
     // We need to find the direct dependencies that have been included in the uber JAR so that we can modify the
 670  
     // POM accordingly.
 671  
     private void createDependencyReducedPom( Set artifactsToRemove )
 672  
         throws IOException, DependencyTreeBuilderException, ProjectBuildingException
 673  
     {
 674  0
         Model model = project.getOriginalModel();
 675  0
         List dependencies = new ArrayList();
 676  
 
 677  0
         boolean modified = false;
 678  
 
 679  0
         List transitiveDeps = new ArrayList();
 680  
 
 681  0
         for ( Iterator it = project.getArtifacts().iterator(); it.hasNext(); )
 682  
         {
 683  0
             Artifact artifact = (Artifact) it.next();
 684  
 
 685  
             //promote
 686  0
             Dependency dep = new Dependency();
 687  0
             dep.setArtifactId( artifact.getArtifactId() );
 688  0
             if ( artifact.hasClassifier() )
 689  
             {
 690  0
                 dep.setClassifier( artifact.getClassifier() );
 691  
             }
 692  0
             dep.setGroupId( artifact.getGroupId() );
 693  0
             dep.setOptional( artifact.isOptional() );
 694  0
             dep.setScope( artifact.getScope() );
 695  0
             dep.setType( artifact.getType() );
 696  0
             dep.setVersion( artifact.getVersion() );
 697  
 
 698  
             //we'll figure out the exclusions in a bit.
 699  
 
 700  0
             transitiveDeps.add( dep );
 701  0
         }
 702  0
         List origDeps = project.getDependencies();
 703  
 
 704  0
         if ( promoteTransitiveDependencies )
 705  
         {
 706  0
             origDeps = transitiveDeps;
 707  
         }
 708  
 
 709  0
         for ( Iterator i = origDeps.iterator(); i.hasNext(); )
 710  
         {
 711  0
             Dependency d = (Dependency) i.next();
 712  
 
 713  0
             dependencies.add( d );
 714  
 
 715  0
             String id = getId( d );
 716  
 
 717  0
             if ( artifactsToRemove.contains( id ) )
 718  
             {
 719  0
                 modified = true;
 720  
 
 721  0
                 if ( keepDependenciesWithProvidedScope )
 722  
                 {
 723  0
                     d.setScope( "provided" );
 724  
                 }
 725  
                 else
 726  
                 {
 727  0
                     dependencies.remove( d );
 728  
                 }
 729  
             }
 730  0
         }
 731  
 
 732  
         // Check to see if we have a reduction and if so rewrite the POM.
 733  0
         if ( modified )
 734  
         {
 735  0
             while ( modified )
 736  
             {
 737  
 
 738  0
                 model.setDependencies( dependencies );
 739  
 
 740  
                 /*
 741  
                  * NOTE: Be sure to create the POM in the original base directory to be able to resolve the relativePath
 742  
                  * to local parent POMs when invoking the project builder below.
 743  
                  */
 744  0
                 File f = new File( project.getBasedir(), "dependency-reduced-pom.xml" );
 745  0
                 if ( f.exists() )
 746  
                 {
 747  0
                     f.delete();
 748  
                 }
 749  
 
 750  0
                 Writer w = WriterFactory.newXmlWriter( f );
 751  
 
 752  
                 try
 753  
                 {
 754  0
                     PomWriter.write( w, model, true );
 755  
                 }
 756  
                 finally
 757  
                 {
 758  0
                     w.close();
 759  0
                 }
 760  
 
 761  0
                 MavenProject p2 = mavenProjectBuilder.build( f, localRepository, null );
 762  0
                 modified = updateExcludesInDeps( p2, dependencies, transitiveDeps );
 763  
 
 764  0
             }
 765  
 
 766  
             /*
 767  
              * NOTE: Although the dependency reduced POM in the project directory is temporary build output, we have to
 768  
              * use that for the file of the project instead of something in target to avoid messing up the base
 769  
              * directory of the project. We'll delete this file on exit to make sure it gets cleaned up but keep a copy
 770  
              * for inspection in the target directory as well.
 771  
              */
 772  0
             File f = new File( project.getBasedir(), "dependency-reduced-pom.xml" );
 773  0
             File f2 = new File( outputDirectory, "dependency-reduced-pom.xml" );
 774  0
             FileUtils.copyFile( f, f2 );
 775  0
             FileUtils.forceDeleteOnExit( f );
 776  0
             project.setFile( f );
 777  
         }
 778  0
     }
 779  
 
 780  
     private String getId( Artifact artifact )
 781  
     {
 782  0
         return getId( artifact.getGroupId(), artifact.getArtifactId(), artifact.getType(), artifact.getClassifier() );
 783  
     }
 784  
 
 785  
     private String getId( Dependency dependency )
 786  
     {
 787  0
         return getId( dependency.getGroupId(), dependency.getArtifactId(), dependency.getType(),
 788  
                       dependency.getClassifier() );
 789  
     }
 790  
 
 791  
     private String getId( String groupId, String artifactId, String type, String classifier )
 792  
     {
 793  0
         return groupId + ":" + artifactId + ":" + type + ":" + ( ( classifier != null ) ? classifier : "" );
 794  
     }
 795  
 
 796  
     public boolean updateExcludesInDeps( MavenProject project,
 797  
                                          List dependencies,
 798  
                                          List transitiveDeps )
 799  
         throws DependencyTreeBuilderException
 800  
     {
 801  0
         DependencyNode node = dependencyTreeBuilder.buildDependencyTree(
 802  
                                                   project,
 803  
                                                   localRepository,
 804  
                                                   artifactFactory,
 805  
                                                   artifactMetadataSource,
 806  
                                                   null,
 807  
                                                   artifactCollector );
 808  0
         boolean modified = false;
 809  0
         Iterator it = node.getChildren().listIterator();
 810  0
         while ( it.hasNext() )
 811  
         {
 812  0
             DependencyNode n2 = (DependencyNode) it.next();
 813  0
             Iterator it2 = n2.getChildren().listIterator();
 814  0
             while ( it2.hasNext() )
 815  
             {
 816  0
                 DependencyNode n3 = (DependencyNode) it2.next();
 817  
                 //anything two levels deep that is marked "included"
 818  
                 //is stuff that was excluded by the original poms, make sure it
 819  
                 //remains excluded IF promoting transitives.
 820  0
                 if ( n3.getState() == DependencyNode.INCLUDED )
 821  
                 {
 822  
                     //check if it really isn't in the list of original dependencies.  Maven
 823  
                     //prior to 2.0.8 may grab versions from transients instead of
 824  
                     //from the direct deps in which case they would be marked included
 825  
                     //instead of OMITTED_FOR_DUPLICATE
 826  
 
 827  
                     //also, if not promoting the transitives, level 2's would be included
 828  0
                     boolean found = false;
 829  0
                     for ( int x = 0; x < transitiveDeps.size(); x++ )
 830  
                     {
 831  0
                         Dependency dep = (Dependency) transitiveDeps.get( x );
 832  0
                         if ( dep.getArtifactId().equals( n3.getArtifact().getArtifactId() )
 833  
                             && dep.getGroupId().equals( n3.getArtifact().getGroupId() ) )
 834  
                         {
 835  0
                             found = true;
 836  
                         }
 837  
 
 838  
                     }
 839  
 
 840  0
                     if ( !found )
 841  
                     {
 842  0
                         for ( int x = 0; x < dependencies.size(); x++ )
 843  
                         {
 844  0
                             Dependency dep = (Dependency) dependencies.get( x );
 845  0
                             if ( dep.getArtifactId().equals( n2.getArtifact().getArtifactId() )
 846  
                                 && dep.getGroupId().equals( n2.getArtifact().getGroupId() ) )
 847  
                             {
 848  0
                                 Exclusion exclusion = new Exclusion();
 849  0
                                 exclusion.setArtifactId( n3.getArtifact().getArtifactId() );
 850  0
                                 exclusion.setGroupId( n3.getArtifact().getGroupId() );
 851  0
                                 dep.addExclusion( exclusion );
 852  0
                                 modified = true;
 853  0
                                 break;
 854  
                             }
 855  
                         }
 856  
                     }
 857  
                 }
 858  0
             }
 859  0
         }
 860  0
         return modified;
 861  
     }
 862  
 }