View Javadoc

1   package org.apache.maven.plugin.javadoc;
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.artifact.Artifact;
23  import org.apache.maven.artifact.resolver.ArtifactResolutionResult;
24  import org.apache.maven.plugin.javadoc.resolver.SourceResolverConfig;
25  import org.apache.maven.plugins.annotations.LifecyclePhase;
26  import org.apache.maven.plugins.annotations.Mojo;
27  import org.apache.maven.plugins.annotations.Parameter;
28  import org.apache.maven.plugins.annotations.ResolutionScope;
29  import org.apache.maven.project.MavenProject;
30  import org.codehaus.plexus.util.StringUtils;
31  
32  import java.io.File;
33  import java.util.ArrayList;
34  import java.util.Collections;
35  import java.util.List;
36  
37  /**
38   * Bundles the Javadoc documentation for <code>test Java code</code> in an <b>NON aggregator</b> project into
39   * a jar using the standard <a href="http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/">Javadoc Tool</a>.
40   *
41   * @author <a href="mailto:vincent.siveton@gmail.com">Vincent Siveton</a>
42   * @version $Id: TestJavadocJar.html 867202 2013-06-24 11:56:53Z olamy $
43   * @since 2.5
44   */
45  @Mojo( name = "test-jar", defaultPhase = LifecyclePhase.PACKAGE, requiresDependencyResolution = ResolutionScope.TEST, threadSafe = true)
46  public class TestJavadocJar
47      extends JavadocJar
48  {
49      // ----------------------------------------------------------------------
50      // Javadoc Options (should be inline with Javadoc options defined in TestJavadocReport)
51      // ----------------------------------------------------------------------
52  
53      /**
54       * Specifies the destination directory where Javadoc saves the generated HTML files.
55       * <br/>
56       * See <a href="http://docs.oracle.com/javase/1.4.2/docs/tooldocs/windows/javadoc.html#d">d</a>.
57       * <br/>
58       */
59      @Parameter( defaultValue = "${project.build.directory}/testapidocs", required = true )
60      private File outputDirectory;
61  
62      /**
63       * Specifies the Test title to be placed near the top of the overview summary file.
64       * <br/>
65       * See <a href="http://docs.oracle.com/javase/1.4.2/docs/tooldocs/windows/javadoc.html#doctitle">doctitle</a>.
66       * <br/>
67       *
68       * @since 2.5
69       */
70      @Parameter( property = "testDoctitle", alias = "doctitle",
71                  defaultValue = "${project.name} ${project.version} Test API" )
72      private String testDoctitle;
73  
74      /**
75       * Specifies that Javadoc should retrieve the text for the Test overview documentation from the "source" file
76       * specified by path/filename and place it on the Overview page (overview-summary.html).
77       * <br/>
78       * See <a href="http://docs.oracle.com/javase/1.4.2/docs/tooldocs/windows/javadoc.html#overview">overview</a>.
79       * <br/>
80       *
81       * @since 2.5
82       */
83      @Parameter( property = "testOverview", alias = "overview",
84                  defaultValue = "${basedir}/src/test/javadoc/overview.html" )
85      private File testOverview;
86  
87      /**
88       * Specifies the Test title to be placed in the HTML title tag.
89       * <br/>
90       * See <a href="http://docs.oracle.com/javase/1.4.2/docs/tooldocs/windows/javadoc.html#windowtitle">windowtitle</a>.
91       * <br/>
92       *
93       * @since 2.5
94       */
95      @Parameter( property = "testWindowtitle", alias = "windowtitle",
96                  defaultValue = "${project.name} ${project.version} Test API" )
97      private String testWindowtitle;
98  
99      // ----------------------------------------------------------------------
100     // Mojo Parameters (should be inline with options defined in TestJavadocReport)
101     // ----------------------------------------------------------------------
102 
103     /**
104      * Specifies the Test Javadoc resources directory to be included in the Javadoc (i.e. package.html, images...).
105      *
106      * @since 2.5
107      */
108     @Parameter( alias = "javadocDirectory", defaultValue = "${basedir}/src/test/javadoc" )
109     private File testJavadocDirectory;
110 
111     // ----------------------------------------------------------------------
112     // Protected methods
113     // ----------------------------------------------------------------------
114 
115     @Override
116     protected String getClassifier()
117     {
118         return "test-javadoc";
119     }
120 
121     // ----------------------------------------------------------------------
122     // Important Note: should be inline with methods defined in TestJavadocReport
123     // ----------------------------------------------------------------------
124 
125     @Override
126     protected String getOutputDirectory()
127     {
128         return outputDirectory.getAbsoluteFile().toString();
129     }
130 
131     @Override
132     protected File getJavadocDirectory()
133     {
134         return testJavadocDirectory;
135     }
136 
137     @Override
138     protected String getDoctitle()
139     {
140         return testDoctitle;
141     }
142 
143     @Override
144     protected File getOverview()
145     {
146         return testOverview;
147     }
148 
149     @Override
150     protected String getWindowtitle()
151     {
152         return testWindowtitle;
153     }
154 
155     @Override
156     protected List<String> getProjectBuildOutputDirs( MavenProject p )
157     {
158         List<String> dirs = new ArrayList<String>();
159         if ( StringUtils.isNotEmpty( p.getBuild().getOutputDirectory() ) )
160         {
161             dirs.add( p.getBuild().getOutputDirectory() );
162         }
163         if ( StringUtils.isNotEmpty( p.getBuild().getTestOutputDirectory() ) )
164         {
165             dirs.add( p.getBuild().getTestOutputDirectory() );
166         }
167 
168         return dirs;
169     }
170 
171     @Override
172     protected List<String> getProjectSourceRoots( MavenProject p )
173     {
174         if ( "pom".equals( p.getPackaging().toLowerCase() ) )
175         {
176             return Collections.emptyList();
177         }
178 
179         return p.getTestCompileSourceRoots();
180     }
181 
182     @Override
183     protected List<String> getExecutionProjectSourceRoots( MavenProject p )
184     {
185         if ( "pom".equals( p.getExecutionProject().getPackaging().toLowerCase() ) )
186         {
187             return Collections.emptyList();
188         }
189 
190         return p.getExecutionProject().getTestCompileSourceRoots();
191     }
192 
193     @Override
194     protected List<Artifact> getProjectArtifacts( MavenProject p )
195     {
196         return p.getTestArtifacts();
197     }
198 
199     @Override
200     protected List<Artifact> getCompileArtifacts( ArtifactResolutionResult result )
201     {
202         return JavadocUtil.getCompileArtifacts( result.getArtifacts(), true );
203     }
204     
205     /**
206      * Overriden to enable the resolution of -test-sources jar files.
207      * 
208      * {@inheritDoc}
209      */
210     @Override
211     protected SourceResolverConfig configureDependencySourceResolution( final SourceResolverConfig config )
212     {
213         return super.configureDependencySourceResolution( config ).withoutCompileSources().withTestSources();
214     }
215 }