View Javadoc
1   package org.apache.maven.plugins.jar;
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.archiver.MavenArchiveConfiguration;
23  import org.apache.maven.archiver.MavenArchiver;
24  import org.apache.maven.execution.MavenSession;
25  import org.apache.maven.plugin.AbstractMojo;
26  import org.apache.maven.plugin.MojoExecutionException;
27  import org.apache.maven.plugins.annotations.Component;
28  import org.apache.maven.plugins.annotations.Parameter;
29  import org.apache.maven.project.MavenProject;
30  import org.apache.maven.project.MavenProjectHelper;
31  import org.apache.maven.shared.model.fileset.FileSet;
32  import org.apache.maven.shared.model.fileset.util.FileSetManager;
33  import org.codehaus.plexus.archiver.Archiver;
34  import org.codehaus.plexus.archiver.jar.JarArchiver;
35  
36  import java.io.File;
37  import java.util.Arrays;
38  import java.util.Map;
39  
40  /**
41   * Base class for creating a jar from project classes.
42   *
43   * @author <a href="evenisse@apache.org">Emmanuel Venisse</a>
44   * @version $Id$
45   */
46  public abstract class AbstractJarMojo
47      extends AbstractMojo
48  {
49  
50      private static final String[] DEFAULT_EXCLUDES = new String[] { "**/package.html" };
51  
52      private static final String[] DEFAULT_INCLUDES = new String[] { "**/**" };
53  
54      private static final String MODULE_DESCRIPTOR_FILE_NAME = "module-info.class";
55  
56      /**
57       * List of files to include. Specified as fileset patterns which are relative to the input directory whose contents
58       * is being packaged into the JAR.
59       */
60      @Parameter
61      private String[] includes;
62  
63      /**
64       * List of files to exclude. Specified as fileset patterns which are relative to the input directory whose contents
65       * is being packaged into the JAR.
66       */
67      @Parameter
68      private String[] excludes;
69  
70      /**
71       * Directory containing the generated JAR.
72       */
73      @Parameter( defaultValue = "${project.build.directory}", required = true )
74      private File outputDirectory;
75  
76      /**
77       * Name of the generated JAR.
78       */
79      @Parameter( defaultValue = "${project.build.finalName}", readonly = true )
80      private String finalName;
81  
82      /**
83       * The Jar archiver.
84       */
85      @Component
86      private Map<String, Archiver> archivers;
87  
88      /**
89       * The {@link {MavenProject}.
90       */
91      @Parameter( defaultValue = "${project}", readonly = true, required = true )
92      private MavenProject project;
93  
94      /**
95       * The {@link MavenSession}.
96       */
97      @Parameter( defaultValue = "${session}", readonly = true, required = true )
98      private MavenSession session;
99  
100     /**
101      * The archive configuration to use. See <a href="http://maven.apache.org/shared/maven-archiver/index.html">Maven
102      * Archiver Reference</a>.
103      */
104     @Parameter
105     private MavenArchiveConfiguration archive = new MavenArchiveConfiguration();
106 
107     /**
108      * Using this property will fail your build cause it has been removed from the plugin configuration. See the
109      * <a href="https://maven.apache.org/plugins/maven-jar-plugin/">Major Version Upgrade to version 3.0.0</a> for the
110      * plugin.
111      * 
112      * @deprecated For version 3.0.0 this parameter is only defined here to break the build if you use it!
113      */
114     @Parameter( property = "jar.useDefaultManifestFile", defaultValue = "false" )
115     private boolean useDefaultManifestFile;
116 
117     /**
118      *
119      */
120     @Component
121     private MavenProjectHelper projectHelper;
122 
123     /**
124      * Require the jar plugin to build a new JAR even if none of the contents appear to have changed. By default, this
125      * plugin looks to see if the output jar exists and inputs have not changed. If these conditions are true, the
126      * plugin skips creation of the jar. This does not work when other plugins, like the maven-shade-plugin, are
127      * configured to post-process the jar. This plugin can not detect the post-processing, and so leaves the
128      * post-processed jar in place. This can lead to failures when those plugins do not expect to find their own output
129      * as an input. Set this parameter to <tt>true</tt> to avoid these problems by forcing this plugin to recreate the
130      * jar every time.<br/>
131      * Starting with <b>3.0.0</b> the property has been renamed from <code>jar.forceCreation</code> to
132      * <code>maven.jar.forceCreation</code>.
133      */
134     @Parameter( property = "maven.jar.forceCreation", defaultValue = "false" )
135     private boolean forceCreation;
136 
137     /**
138      * Skip creating empty archives.
139      */
140     @Parameter( defaultValue = "false" )
141     private boolean skipIfEmpty;
142 
143     /**
144      * Return the specific output directory to serve as the root for the archive.
145      * @return get classes directory.
146      */
147     protected abstract File getClassesDirectory();
148 
149     /**
150      * @return the {@link #project}
151      */
152     protected final MavenProject getProject()
153     {
154         return project;
155     }
156 
157     /**
158      * Overload this to produce a jar with another classifier, for example a test-jar.
159      * @return get the classifier.
160      */
161     protected abstract String getClassifier();
162 
163     /**
164      * Overload this to produce a test-jar, for example.
165      * @return return the type.
166      */
167     protected abstract String getType();
168 
169     /**
170      * Returns the Jar file to generate, based on an optional classifier.
171      *
172      * @param basedir the output directory
173      * @param resultFinalName the name of the ear file
174      * @param classifier an optional classifier
175      * @return the file to generate
176      */
177     protected File getJarFile( File basedir, String resultFinalName, String classifier )
178     {
179         if ( basedir == null )
180         {
181             throw new IllegalArgumentException( "basedir is not allowed to be null" );
182         }
183         if ( resultFinalName == null )
184         {
185             throw new IllegalArgumentException( "finalName is not allowed to be null" );
186         }
187 
188         StringBuilder fileName = new StringBuilder( resultFinalName );
189 
190         if ( hasClassifier() )
191         {
192             fileName.append( "-" ).append( classifier );
193         }
194 
195         fileName.append( ".jar" );
196 
197         return new File( basedir, fileName.toString() );
198     }
199 
200     /**
201      * Generates the JAR.
202      * @return The instance of File for the created archive file.
203      * @throws MojoExecutionException in case of an error.
204      */
205     public File createArchive()
206         throws MojoExecutionException
207     {
208         File jarFile = getJarFile( outputDirectory, finalName, getClassifier() );
209 
210         FileSetManager fileSetManager = new FileSetManager();
211         FileSet jarContentFileSet = new FileSet();
212         jarContentFileSet.setDirectory( getClassesDirectory().getAbsolutePath() );
213         jarContentFileSet.setIncludes( Arrays.asList( getIncludes() ) );
214         jarContentFileSet.setExcludes( Arrays.asList( getExcludes() ) );
215 
216         boolean containsModuleDescriptor = false;
217         String[] includedFiles = fileSetManager.getIncludedFiles( jarContentFileSet );
218         for ( String includedFile : includedFiles )
219         {
220             // May give false positives if the files is named as module descriptor
221             // but is not in the root of the archive or in the versioned area
222             // (and hence not actually a module descriptor).
223             // That is fine since the modular Jar archiver will gracefully
224             // handle such case.
225             // And also such case is unlikely to happen as file ending
226             // with "module-info.class" is unlikely to be included in Jar file
227             // unless it is a module descriptor.
228             if ( includedFile.endsWith( MODULE_DESCRIPTOR_FILE_NAME ) )
229             {
230                 containsModuleDescriptor = true;
231                 break;
232             }
233         }
234 
235         MavenArchiver archiver = new MavenArchiver();
236 
237         if ( containsModuleDescriptor )
238         {
239             archiver.setArchiver( (JarArchiver) archivers.get( "mjar" ) );
240         }
241         else
242         {
243             archiver.setArchiver( (JarArchiver) archivers.get( "jar" ) );
244         }
245 
246         archiver.setOutputFile( jarFile );
247 
248         archive.setForced( forceCreation );
249 
250         try
251         {
252             File contentDirectory = getClassesDirectory();
253             if ( !contentDirectory.exists() )
254             {
255                 getLog().warn( "JAR will be empty - no content was marked for inclusion!" );
256             }
257             else
258             {
259                 archiver.getArchiver().addDirectory( contentDirectory, getIncludes(), getExcludes() );
260             }
261 
262             archiver.createArchive( session, project, archive );
263 
264             return jarFile;
265         }
266         catch ( Exception e )
267         {
268             // TODO: improve error handling
269             throw new MojoExecutionException( "Error assembling JAR", e );
270         }
271     }
272 
273     /**
274      * Generates the JAR.
275      * @throws MojoExecutionException in case of an error.
276      */
277     public void execute()
278         throws MojoExecutionException
279     {
280         if ( useDefaultManifestFile )
281         {
282             throw new MojoExecutionException( "You are using 'useDefaultManifestFile' which has been removed"
283                 + " from the maven-jar-plugin. "
284                 + "Please see the >>Major Version Upgrade to version 3.0.0<< on the plugin site." );
285         }
286 
287         if ( skipIfEmpty && ( !getClassesDirectory().exists() || getClassesDirectory().list().length < 1 ) )
288         {
289             getLog().info( "Skipping packaging of the " + getType() );
290         }
291         else
292         {
293             File jarFile = createArchive();
294 
295             if ( hasClassifier() )
296             {
297                 projectHelper.attachArtifact( getProject(), getType(), getClassifier(), jarFile );
298             }
299             else
300             {
301                 if ( projectHasAlreadySetAnArtifact() )
302                 {
303                     throw new MojoExecutionException( "You have to use a classifier "
304                         + "to attach supplemental artifacts to the project instead of replacing them." );
305                 }
306                 getProject().getArtifact().setFile( jarFile );
307             }
308         }
309     }
310 
311     private boolean projectHasAlreadySetAnArtifact()
312     {
313         if ( getProject().getArtifact().getFile() != null )
314         {
315             return getProject().getArtifact().getFile().isFile();
316         }
317         else
318         {
319             return false;
320         }
321     }
322 
323     /**
324      * @return true in case where the classifier is not {@code null} and contains something else than white spaces.
325      */
326     protected boolean hasClassifier()
327     {
328         boolean result = false;
329         if ( getClassifier() != null && getClassifier().trim().length() > 0 )
330         {
331             result = true;
332         }
333 
334         return result;
335     }
336 
337     private String[] getIncludes()
338     {
339         if ( includes != null && includes.length > 0 )
340         {
341             return includes;
342         }
343         return DEFAULT_INCLUDES;
344     }
345 
346     private String[] getExcludes()
347     {
348         if ( excludes != null && excludes.length > 0 )
349         {
350             return excludes;
351         }
352         return DEFAULT_EXCLUDES;
353     }
354 }