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      * Timestamp for reproducible output archive entries, either formatted as ISO 8601 extended offset date-time
145      * (e.g. in UTC such as '2011-12-03T10:15:30Z' or with an offset '2019-10-05T20:37:42+06:00'),
146      * or as an int representing seconds since the epoch
147      * (like <a href="https://reproducible-builds.org/docs/source-date-epoch/">SOURCE_DATE_EPOCH</a>).
148      *
149      * @since 3.2.0
150      */
151     @Parameter( defaultValue = "${project.build.outputTimestamp}" )
152     private String outputTimestamp;
153 
154     /**
155      * Return the specific output directory to serve as the root for the archive.
156      * @return get classes directory.
157      */
158     protected abstract File getClassesDirectory();
159 
160     /**
161      * @return the {@link #project}
162      */
163     protected final MavenProject getProject()
164     {
165         return project;
166     }
167 
168     /**
169      * Overload this to produce a jar with another classifier, for example a test-jar.
170      * @return get the classifier.
171      */
172     protected abstract String getClassifier();
173 
174     /**
175      * Overload this to produce a test-jar, for example.
176      * @return return the type.
177      */
178     protected abstract String getType();
179 
180     /**
181      * Returns the Jar file to generate, based on an optional classifier.
182      *
183      * @param basedir the output directory
184      * @param resultFinalName the name of the ear file
185      * @param classifier an optional classifier
186      * @return the file to generate
187      */
188     protected File getJarFile( File basedir, String resultFinalName, String classifier )
189     {
190         if ( basedir == null )
191         {
192             throw new IllegalArgumentException( "basedir is not allowed to be null" );
193         }
194         if ( resultFinalName == null )
195         {
196             throw new IllegalArgumentException( "finalName is not allowed to be null" );
197         }
198 
199         String fileName;
200         if ( hasClassifier() )
201         {
202             fileName = resultFinalName + "-" + classifier + ".jar";
203         }
204         else
205         {
206             fileName = resultFinalName + ".jar";
207         }
208 
209         return new File( basedir, fileName );
210     }
211 
212     /**
213      * Generates the JAR.
214      * @return The instance of File for the created archive file.
215      * @throws MojoExecutionException in case of an error.
216      */
217     public File createArchive()
218         throws MojoExecutionException
219     {
220         File jarFile = getJarFile( outputDirectory, finalName, getClassifier() );
221 
222         FileSetManager fileSetManager = new FileSetManager();
223         FileSet jarContentFileSet = new FileSet();
224         jarContentFileSet.setDirectory( getClassesDirectory().getAbsolutePath() );
225         jarContentFileSet.setIncludes( Arrays.asList( getIncludes() ) );
226         jarContentFileSet.setExcludes( Arrays.asList( getExcludes() ) );
227 
228         boolean containsModuleDescriptor = false;
229         String[] includedFiles = fileSetManager.getIncludedFiles( jarContentFileSet );
230         for ( String includedFile : includedFiles )
231         {
232             // May give false positives if the files is named as module descriptor
233             // but is not in the root of the archive or in the versioned area
234             // (and hence not actually a module descriptor).
235             // That is fine since the modular Jar archiver will gracefully
236             // handle such case.
237             // And also such case is unlikely to happen as file ending
238             // with "module-info.class" is unlikely to be included in Jar file
239             // unless it is a module descriptor.
240             if ( includedFile.endsWith( MODULE_DESCRIPTOR_FILE_NAME ) )
241             {
242                 containsModuleDescriptor = true;
243                 break;
244             }
245         }
246 
247         String archiverName = containsModuleDescriptor ? "mjar" : "jar";
248 
249         MavenArchiver archiver = new MavenArchiver();
250         archiver.setCreatedBy( "Maven JAR Plugin", "org.apache.maven.plugins", "maven-jar-plugin" );
251         archiver.setArchiver( (JarArchiver) archivers.get( archiverName ) );
252         archiver.setOutputFile( jarFile );
253 
254         // configure for Reproducible Builds based on outputTimestamp value
255         archiver.configureReproducibleBuild( outputTimestamp );
256 
257         archive.setForced( forceCreation );
258 
259         try
260         {
261             File contentDirectory = getClassesDirectory();
262             if ( !contentDirectory.exists() )
263             {
264                 if ( !forceCreation )
265                 {
266                     getLog().warn( "JAR will be empty - no content was marked for inclusion!" );
267                 }
268             }
269             else
270             {
271                 archiver.getArchiver().addDirectory( contentDirectory, getIncludes(), getExcludes() );
272             }
273 
274             archiver.createArchive( session, project, archive );
275 
276             return jarFile;
277         }
278         catch ( Exception e )
279         {
280             // TODO: improve error handling
281             throw new MojoExecutionException( "Error assembling JAR", e );
282         }
283     }
284 
285     /**
286      * Generates the JAR.
287      * @throws MojoExecutionException in case of an error.
288      */
289     public void execute()
290         throws MojoExecutionException
291     {
292         if ( useDefaultManifestFile )
293         {
294             throw new MojoExecutionException( "You are using 'useDefaultManifestFile' which has been removed"
295                 + " from the maven-jar-plugin. "
296                 + "Please see the >>Major Version Upgrade to version 3.0.0<< on the plugin site." );
297         }
298 
299         if ( skipIfEmpty && ( !getClassesDirectory().exists() || getClassesDirectory().list().length < 1 ) )
300         {
301             getLog().info( "Skipping packaging of the " + getType() );
302         }
303         else
304         {
305             File jarFile = createArchive();
306 
307             if ( hasClassifier() )
308             {
309                 projectHelper.attachArtifact( getProject(), getType(), getClassifier(), jarFile );
310             }
311             else
312             {
313                 if ( projectHasAlreadySetAnArtifact() )
314                 {
315                     throw new MojoExecutionException( "You have to use a classifier "
316                         + "to attach supplemental artifacts to the project instead of replacing them." );
317                 }
318                 getProject().getArtifact().setFile( jarFile );
319             }
320         }
321     }
322 
323     private boolean projectHasAlreadySetAnArtifact()
324     {
325         if ( getProject().getArtifact().getFile() == null )
326         {
327             return false;
328         }
329 
330         return getProject().getArtifact().getFile().isFile();
331     }
332 
333     /**
334      * @return true in case where the classifier is not {@code null} and contains something else than white spaces.
335      */
336     protected boolean hasClassifier()
337     {
338         return getClassifier() != null && getClassifier().trim().length() > 0;
339     }
340 
341     private String[] getIncludes()
342     {
343         if ( includes != null && includes.length > 0 )
344         {
345             return includes;
346         }
347         return DEFAULT_INCLUDES;
348     }
349 
350     private String[] getExcludes()
351     {
352         if ( excludes != null && excludes.length > 0 )
353         {
354             return excludes;
355         }
356         return DEFAULT_EXCLUDES;
357     }
358 }