View Javadoc

1   package org.apache.maven.plugin.dependency.fromConfiguration;
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.apache.maven.plugin.MojoExecutionException;
23  import org.apache.maven.plugin.MojoFailureException;
24  import org.apache.maven.plugin.dependency.utils.filters.ArtifactItemFilter;
25  import org.apache.maven.plugin.dependency.utils.filters.MarkerFileFilter;
26  import org.apache.maven.plugin.dependency.utils.markers.MarkerHandler;
27  import org.apache.maven.plugin.dependency.utils.markers.UnpackFileMarkerHandler;
28  import org.apache.maven.plugins.annotations.LifecyclePhase;
29  import org.apache.maven.plugins.annotations.Mojo;
30  import org.apache.maven.plugins.annotations.Parameter;
31  import org.codehaus.plexus.util.StringUtils;
32  
33  import java.io.File;
34  import java.util.List;
35  
36  /**
37   * Goal that retrieves a list of artifacts from the repository and unpacks them in a defined location.
38   *
39   * @author <a href="mailto:brianf@apache.org">Brian Fox</a>
40   * @version $Id: UnpackMojo.html 861760 2013-05-12 17:31:26Z hboutemy $
41   * @since 1.0
42   */
43  @Mojo( name = "unpack", defaultPhase = LifecyclePhase.PROCESS_SOURCES, requiresProject = false, threadSafe = true )
44  public class UnpackMojo
45      extends AbstractFromConfigurationMojo
46  {
47  
48      /**
49       * Directory to store flag files after unpack
50       */
51      @Parameter( defaultValue = "${project.build.directory}/dependency-maven-plugin-markers" )
52      private File markersDirectory;
53  
54      /**
55       * A comma separated list of file patterns to include when unpacking the artifact. i.e. **\/*.xml,**\/*.properties
56       * NOTE: Excludes patterns override the includes. (component code = return isIncluded( name ) AND !isExcluded( name
57       * );)
58       *
59       * @since 2.0-alpha-5
60       */
61      @Parameter( property = "mdep.unpack.includes" )
62      private String includes;
63  
64      /**
65       * A comma separated list of file patterns to exclude when unpacking the artifact. i.e. **\/*.xml,**\/*.properties
66       * NOTE: Excludes patterns override the includes. (component code = return isIncluded( name ) AND !isExcluded( name
67       * );)
68       *
69       * @since 2.0-alpha-5
70       */
71      @Parameter( property = "mdep.unpack.excludes" )
72      private String excludes;
73  
74      /**
75       * The artifact to unpack from commandLine.
76       * Use {@link #artifactItems} within the pom-configuration.
77       */
78      @SuppressWarnings( "unused" ) //marker-field, setArtifact(String) does the magic
79      @Parameter( property = "artifact" )
80      private String artifact;
81  
82      /**
83       * Main entry into mojo. This method gets the ArtifactItems and iterates through each one passing it to
84       * unpackArtifact.
85       *
86       * @throws MojoExecutionException with a message if an error occurs.
87       * @see ArtifactItem
88       * @see #getArtifactItems
89       * @see #unpackArtifact(ArtifactItem)
90       */
91      protected void doExecute()
92          throws MojoExecutionException, MojoFailureException
93      {
94          if ( isSkip() )
95          {
96              return;
97          }
98          
99          verifyRequirements();
100 
101         List<ArtifactItem> processedItems = getProcessedArtifactItems( false );
102         for ( ArtifactItem artifactItem : processedItems )
103         {
104             if ( artifactItem.isNeedsProcessing() )
105             {
106                 unpackArtifact( artifactItem );
107             }
108             else
109             {
110                 this.getLog().info( artifactItem.getArtifact().getFile().getName() + " already unpacked." );
111             }
112         }
113     }
114 
115     /**
116      * This method gets the Artifact object and calls DependencyUtil.unpackFile.
117      *
118      * @param artifactItem containing the information about the Artifact to unpack.
119      * @throws MojoExecutionException with a message if an error occurs.
120      * @see #getArtifact
121      * @see DependencyUtil#unpackFile(Artifact, File, File, ArchiverManager, Log)
122      */
123     private void unpackArtifact( ArtifactItem artifactItem )
124         throws MojoExecutionException
125     {
126         MarkerHandler handler = new UnpackFileMarkerHandler( artifactItem, this.markersDirectory );
127 
128         unpack( artifactItem.getArtifact(), artifactItem.getOutputDirectory(), artifactItem.getIncludes(),
129                 artifactItem.getExcludes() );
130         handler.setMarker();
131     }
132 
133     ArtifactItemFilter getMarkedArtifactFilter( ArtifactItem item )
134     {
135         MarkerHandler handler = new UnpackFileMarkerHandler( item, this.markersDirectory );
136 
137         return new MarkerFileFilter( this.isOverWriteReleases(), this.isOverWriteSnapshots(), this.isOverWriteIfNewer(),
138                                      handler );
139     }
140 
141     protected List<ArtifactItem> getProcessedArtifactItems( boolean removeVersion )
142         throws MojoExecutionException
143     {
144         List<ArtifactItem> items =
145             super.getProcessedArtifactItems( new ProcessArtifactItemsRequest( removeVersion, false, false, false ) );
146         for ( ArtifactItem artifactItem : items )
147         {
148             if ( StringUtils.isEmpty( artifactItem.getIncludes() ) )
149             {
150                 artifactItem.setIncludes( getIncludes() );
151             }
152             if ( StringUtils.isEmpty( artifactItem.getExcludes() ) )
153             {
154                 artifactItem.setExcludes( getExcludes() );
155             }
156         }
157         return items;
158     }
159 
160     /**
161      * @return Returns the markersDirectory.
162      */
163     public File getMarkersDirectory()
164     {
165         return this.markersDirectory;
166     }
167 
168     /**
169      * @param theMarkersDirectory The markersDirectory to set.
170      */
171     public void setMarkersDirectory( File theMarkersDirectory )
172     {
173         this.markersDirectory = theMarkersDirectory;
174     }
175 
176     /**
177      * @return Returns a comma separated list of excluded items
178      */
179     public String getExcludes()
180     {
181         return this.excludes;
182     }
183 
184     /**
185      * @param excludes A comma separated list of items to exclude i.e. **\/*.xml, **\/*.properties
186      */
187     public void setExcludes( String excludes )
188     {
189         this.excludes = excludes;
190     }
191 
192     /**
193      * @return Returns a comma separated list of included items
194      */
195     public String getIncludes()
196     {
197         return this.includes;
198     }
199 
200     /**
201      * @param includes A comma separated list of items to include i.e. **\/*.xml, **\/*.properties
202      */
203     public void setIncludes( String includes )
204     {
205         this.includes = includes;
206     }
207 }