------ Configuring Stylesheets ------ Maria Odea Ching Vincent Siveton ------ 2009-08-04 ------ ~~ 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 Configuring Stylesheets If no custom stylesheet is specified in the {{{../javadoc-mojo.html#stylesheetfile}\}} parameter, the {{{../javadoc-mojo.html#stylesheet}\}} parameter will indicate which stylesheet will be used -- the stylesheet included in the maven javadoc plugin or the default stylesheet used by the javadoc tool. <> value indicates the maven javadoc plugin stylesheet, while <> value indicates the default javadoc tool stylesheet. The default is <> value if not specified. +-----+ ... (or ) org.apache.maven.plugins maven-javadoc-plugin ${project.version} maven ... ... (or ) ... +-----+ Configuring Stylesheets File If a custom {{{../javadoc-mojo.html#stylesheetfile}\}} parameter is specified, you will be able to use it: * if {{{../javadoc-mojo.html#stylesheetfile}\}} is a given file, you could use an absolute or a relative path, for instance: +-----+ ... (or ) org.apache.maven.plugins maven-javadoc-plugin ${project.version} ${basedir}/path/to/your/stylesheetfile.css ... ... (or ) ... +-----+ * since 2.6, {{{../javadoc-mojo.html#stylesheetfile}\}} could be a resource in your project directory, i.e. <<>>, <<>> or <<>>, for instance: +-----+ ... (or ) org.apache.maven.plugins maven-javadoc-plugin ${project.version} path/to/your/stylesheet.css ... ... (or ) ... +-----+ * since 2.6, {{{../javadoc-mojo.html#stylesheetfile}\}} could be a resource in the Javadoc plugin dependencies, for instance: +-----+ ... org.apache.maven.plugins maven-javadoc-plugin ${project.version} path/to/your/stylesheet.css groupId artifactId version ... ... +-----+