2003-01-24 03:44:26 +00:00

80 lines
2.5 KiB
XML

<?xml version="1.0"?>
<project
xmlns:j="jelly:core"
xmlns:util="jelly:util"
xmlns:changelog="changelog"
xmlns:doc="doc">
<!-- ================================================================== -->
<!-- F I L E A C T I V I T Y R E P O R T -->
<!-- ================================================================== -->
<!--
I want to be able to do <goal name="${plugin.artifactId}:report"/> so I have
to teach werkz to look in the context for the name attribute as well.
This will simplify things and make them consistent as we can easily
generate the skeleton for a report plugin.
-->
<goal name="maven-file-activity-plugin:report"
description="Generate developer and file activity reports">
<j:if test="${context.getVariable('maven.mode.online') == null}">
<j:set var="maven.mode.online" value="true" />
</j:if>
<j:choose>
<j:when test="${maven.mode.online}">
<j:set var="_connection">${pom.repository.connection}</j:set>
<j:if test="${!empty(_connection)}">
<echo>Generating the file activity report</echo>
<mkdir dir="${maven.gen.docs}"/>
<!--
|
| Now we only want to generate the change log if it hasn't
| already been generated.
|
-->
<util:available file="${maven.build.dir}/changelog.xml">
<j:set var="changelogPresent" value="true"/>
</util:available>
<j:if test="${changlogPresent != 'true'}">
<changelog:changelog
basedir="${basedir}"
developers="${pom.developers}"
factory="${maven.changelog.factory}"
output="${maven.build.dir}/changelog.xml"
outputEncoding="${maven.docs.outputencoding}"
range="${maven.activitylog.range}"
repositoryConnection="${pom.repository.connection}"
/>
</j:if>
<doc:jsl
input="${maven.build.dir}/changelog.xml"
output="file-activity-report.xml"
stylesheet="${plugin.resources}/${plugin.artifactId}.jsl"
encoding="${maven.docs.outputencoding}"
omitXmlDeclaration="false"
outputMode="xml"
prettyPrint="true"
/>
</j:if>
</j:when>
<j:otherwise>
<echo>The Activity report is only available in online mode.</echo>
</j:otherwise>
</j:choose>
</goal>
</project>