- Added new download report along with a new link in the Maven generated documentation. This new link will only appear if you have defined the new <code>maven.xdoc.distributionUrl</code> property. There is also a new <code>maven.xdoc.distributionType</code> property that indicates what type of artifact your project is delivering. It defaults to "jar".

- The xdoc plugin now supports generating custom reports using Jelly. It was previously only supporting Velocity. Simply name your report templates with a ".jelly" extension.


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115154 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
vmassol
2004-05-02 10:16:08 +00:00
parent 513e2f794b
commit c80cf29540
7 changed files with 184 additions and 60 deletions

View File

@@ -26,12 +26,26 @@ maven.xdoc.includeProjectDocumentation = yes
maven.xdoc.crumb.separator=|
maven.xdoc.theme.url=
# Location where the artifacts are distributed. This property is optional.
# If it is not defined, then the Download report will not be added to the
# navigation menu.
# NOTE: In the future this information will be described in the POM
# Ex: maven.xdoc.distributionUrl=http://www.ibiblio.org/maven/maven/plugins
# Type of the distributed artifact. Defaults to jar. Override this property if
# your project is distributing artifacts of a different type.
# NOTE: In the future this information will be described in the POM
maven.xdoc.distributionType=jar
#
# DATE Preferences
#
# The place of the date on the pages : choices are 'bottom', 'left', 'right', 'navigation-top', 'navigation-bottom'
maven.xdoc.date =
maven.xdoc.date.format = dd MMMM yyyy
# The date locale
maven.xdoc.date.locale = en
@@ -97,12 +111,13 @@ maven.xdoc.pomDocuments = cvs-usage.xml,\
issue-tracking.xml,\
mail-lists.xml,\
project-info.xml,\
team-list.xml
team-list.xml,\
downloads.jelly
maven.xdoc.projectInfo = cvs-usage.xml,\
dependencies.xml,\
issue-tracking.xml,\
mail-lists.xml,\
project-info.xml,\
team-list.xml
dependencies.xml,\
issue-tracking.xml,\
mail-lists.xml,\
project-info.xml,\
team-list.xml,\
downloads.jelly