View Javadoc
1   package org.apache.maven.plugins.site.descriptor;
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.IOException;
24  
25  import java.util.Locale;
26  
27  import org.apache.maven.plugin.MojoExecutionException;
28  import org.apache.maven.plugins.annotations.Component;
29  import org.apache.maven.plugins.annotations.LifecyclePhase;
30  import org.apache.maven.plugins.annotations.Mojo;
31  import org.apache.maven.plugins.annotations.Parameter;
32  import org.apache.maven.project.MavenProjectHelper;
33  
34  import org.codehaus.plexus.util.FileUtils;
35  
36  /**
37   * Adds the site descriptor (<code>site.xml</code>) to the list of files to be installed/deployed.<br/>
38   * For Maven-2.x this is enabled by default only when the project has <code>pom</code> packaging since it will be used
39   * by modules inheriting, but this can be enabled for other projects packaging if needed.<br/>
40   * This default execution has been removed from the built-in lifecycle of Maven 3.x for <code>pom</code>-projects.
41   * Users that actually use those projects to provide a common site descriptor for sub modules will need to explicitly
42   * define this goal execution to restore the intended behavior.
43   *
44   * @author <a href="mailto:brett@apache.org">Brett Porter</a>
45   * @version $Id: SiteDescriptorAttachMojo.java 1722730 2016-01-03 15:24:33Z hboutemy $
46   */
47  @Mojo( name = "attach-descriptor", defaultPhase = LifecyclePhase.PACKAGE, threadSafe = true )
48  public class SiteDescriptorAttachMojo
49      extends AbstractSiteDescriptorMojo
50  {
51      /**
52       */
53      @Parameter( property = "basedir", required = true, readonly = true )
54      private File basedir;
55  
56      /**
57       * Maven ProjectHelper.
58       *
59       * @since 2.1.1
60       */
61      @Component
62      private MavenProjectHelper projectHelper;
63  
64      @Parameter( defaultValue = "true" )
65      private boolean pomPackagingOnly;
66  
67      public void execute()
68          throws MojoExecutionException
69      {
70          if ( pomPackagingOnly && !"pom".equals( project.getPackaging() ) )
71          {
72              // http://jira.codehaus.org/browse/MSITE-597
73              return;
74          }
75  
76          for ( Locale locale : getLocales() )
77          {
78              File descriptorFile = siteTool.getSiteDescriptor( siteDirectory, locale );
79  
80              if ( descriptorFile.exists() )
81              {
82                  // Calculate the classifier to use
83                  String classifier = getClassifier( descriptorFile );
84                  // Prepare a file for the interpolated site descriptor
85                  String filename = project.getArtifactId() + "-" + project.getVersion() + "-" + descriptorFile.getName();
86                  File targetDescriptorFile = new File( project.getBuild().getDirectory(), filename );
87  
88                  try
89                  {
90                      // Copy the site descriptor to a file
91                      FileUtils.copyFile( descriptorFile, targetDescriptorFile );
92                      // Attach the site descriptor
93                      getLog().debug( "Attaching the site descriptor '" + targetDescriptorFile.getAbsolutePath()
94                          + "' with classifier '" + classifier + "' to the project." );
95                      projectHelper.attachArtifact( project, "xml", classifier, targetDescriptorFile );
96                  }
97                  catch ( IOException e )
98                  {
99                      throw new MojoExecutionException( "Unable to copy site descriptor", e );
100                 }
101             }
102         }
103     }
104 
105     private static String getClassifier( final File descriptorFile )
106         throws MojoExecutionException
107     {
108         final int index = descriptorFile.getName().lastIndexOf( '.' );
109 
110         if ( index > 0 )
111         {
112             return descriptorFile.getName().substring( 0, index );
113         }
114         else
115         {
116             throw new MojoExecutionException( "Unable to determine the classifier to use" );
117         }
118     }
119 }