------ Selective Javadocs Reports ------ Vincent Siveton ------ 2009-09-13 ------ ~~ Licensed to the Apache Software Foundation (ASF) under one ~~ or more contributor license agreements. See the NOTICE file ~~ distributed with this work for additional information ~~ regarding copyright ownership. The ASF licenses this file ~~ to you under the Apache License, Version 2.0 (the ~~ "License"); you may not use this file except in compliance ~~ with the License. You may obtain a copy of the License at ~~ ~~ http://www.apache.org/licenses/LICENSE-2.0 ~~ ~~ Unless required by applicable law or agreed to in writing, ~~ software distributed under the License is distributed on an ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~~ KIND, either express or implied. See the License for the ~~ specific language governing permissions and limitations ~~ under the License. ~~ NOTE: For help with the syntax of this file, see: ~~ http://maven.apache.org/doxia/references/apt-format.html Selective Javadocs Reports To run the Javadocs reports selectively, you need to include only the Javadocs reports that you prefer. As said in the {{{../faq.html#Where_in_the_pom.xml_do_I_configure_the_Javadoc_Plugin}FAQ}}, the configuration depends on the \ tag or \ tag used. * Using \ Tag +-----+ ... org.apache.maven.plugins maven-javadoc-plugin ${project.version} ... javadoc test-javadoc site ... ... +-----+ Since the phase is <<>>, you need to call <<>> to generate the selected reports (only main and test javadocs). * Using \ Tag +-----+ ... org.apache.maven.plugins maven-javadoc-plugin ${project.version} ... default ... javadoc test-javadoc aggregate ... aggregate ... +-----+ Just call <<>> to generate the selected reports (main, test and aggregate javadocs).