Index: src/main/java/org/apache/maven/plugin/javadoc/JavadocReport.java =================================================================== --- src/main/java/org/apache/maven/plugin/javadoc/JavadocReport.java (revision 428207) +++ src/main/java/org/apache/maven/plugin/javadoc/JavadocReport.java (working copy) @@ -59,6 +59,28 @@ private Renderer siteRenderer; private File reportOutputDirectory; + + /** + * The name of the javadoc report. + * + * @parameter expression="${name}" default-value="JavaDocs" + */ + private String name; + + /** + * The description of the javadoc report. + * + * @parameter expression="${description}" default-value="JavaDoc API documentation." + */ + private String description; + + /** + * The link of the javadoc report. + * This should not include the ".html" extention. + * + * @parameter expression="${outputName}" default-value="apidocs/index" + */ + private String outputName; // ---------------------------------------------------------------------- // @@ -69,7 +91,7 @@ */ public String getName( Locale locale ) { - return "JavaDocs"; + return name; } /** @@ -78,7 +100,7 @@ public String getDescription( Locale locale ) { // TODO i18n - return "JavaDoc API documentation."; + return description; } /** @@ -111,7 +133,7 @@ */ public String getOutputName() { - return "apidocs/index"; + return outputName; } /**