evenisse 95ebcf3852 Apply patch from Jim Crossley. Thanks.
o patch for support whitespace in starteam connection string
o patch for support specific locale with Starteam


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113004 13f79535-47bb-0310-9956-ffa450edef68
2003-02-27 10:30:33 +00:00

86 lines
2.8 KiB
XML

<?xml version="1.0"?>
<project
xmlns:j="jelly:core"
xmlns:util="jelly:util"
xmlns:changelog="changelog"
xmlns:doc="doc">
<goal name="maven-developer-activity-plugin:register">
<doc:registerReport
name="Developer Activity"
pluginName="maven-developer-activity-plugin"
link="developer-activity-report"
description="Report on the amount of developer activity."/>
</goal>
<goal name="maven-developer-activity-plugin:deregister">
<doc:deregisterReport name="Developer Activity"/>
</goal>
<!-- ================================================================== -->
<!-- D E V E L O P E R A C T I V I T Y R E P O R T -->
<!-- ================================================================== -->
<goal name="maven-developer-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:set var="factory"
value="${pom.getPluginContext('maven-changelog-plugin').getVariable('maven.changelog.factory')}"/>
<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 developer activity report</echo>
<!--
|
| 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="${changelogPresent != 'true'}">
<changelog:changelog
basedir="${basedir}"
developers="${pom.developers}"
factory="${factory}"
output="${maven.build.dir}/changelog.xml"
outputEncoding="${maven.docs.outputencoding}"
range="${maven.activitylog.range}"
repositoryConnection="${pom.repository.connection}"
dateFormat="${maven.changelog.dateformat}"
/>
</j:if>
<doc:jsl
input="${maven.build.dir}/changelog.xml"
output="developer-activity-report.xml"
stylesheet="${plugin.resources}/developer-activity.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>