Add custom tags support. This option is only available with Java 1.4.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113166 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
evenisse
2003-03-21 14:51:06 +00:00
parent 368c574c06
commit 28e1924ac4
3 changed files with 31 additions and 2 deletions

View File

@@ -5,7 +5,7 @@
<pomVersion>3</pomVersion>
<id>maven-javadoc-plugin</id>
<name>Maven Javadoc Plug-in</name>
<currentVersion>1.1</currentVersion>
<currentVersion>1.2-SNAPSHOT</currentVersion>
<description/>
<shortDescription>Java Project Management Tools</shortDescription>
<url>http://maven.apache.org/reference/plugins/javadoc/</url>

View File

@@ -6,7 +6,12 @@
</properties>
<body>
<release version="1.1" date="in CVS">
<release version="1.2" date="in CVS">
<action dev="evenisse" type="add">
Added a custom tags support. This option is only available with Java 1.4.
</action>
</release>
<release version="1.1">
<action dev="dion" type="add">
Added a report with the javadoc run contents
</action>

View File

@@ -114,6 +114,30 @@
from the project descriptor.
</td>
</tr>
<tr>
<td>maven.javadoc.customtags</td>
<td>Yes</td>
<td>
Specifies custom tags to use for the generated
Javadocs. You can specify some tags separate by space.
Each tag is describe in sub properties.
This option is only available with Java 1.4.
Sample :
<source><![CDATA[
maven.javadoc.customtags=tag1 tag2
tag1.name=todo
tag1.description=To Do:
tag1.enabled=true
tag1.scope=all
tag2.name=task
tag2.description=Task:
tag2.enabled=false
tag2.scope=all
]]>
</source>
</td>
</tr>
</table>
</section>
</body>