PR: MPFILEACTIVITY-3

Submitted by: Dennis Lundberg
Only show the timeframe when maven.changelog.type=range.


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@408950 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl
2006-05-23 16:00:56 +00:00
parent a28e81e211
commit 7ed68a1151
3 changed files with 9 additions and 3 deletions

View File

@@ -22,7 +22,7 @@
<pomVersion>3</pomVersion>
<id>maven-file-activity-plugin</id>
<name>Maven File Activity Plugin</name>
<currentVersion>1.6</currentVersion>
<currentVersion>1.6.1-SNAPSHOT</currentVersion>
<gumpRepositoryId>jakarta</gumpRepositoryId>
<description>This document provides a report of activity in terms of CVS commits and breaks it out by file.</description>
<shortDescription>File activity Report</shortDescription>

View File

@@ -3,7 +3,7 @@
<!--
* ========================================================================
*
* Copyright 2004 The Apache Software Foundation.
* Copyright 2004-2006 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,10 @@
</j:choose>
<subsection name="${setname}">
<p>
Timeframe: ${maven.changelog.range} days,
<j:set var="type" value="${maven.changelog.type}"/>
<j:if test="${type == 'range'}">
Timeframe: ${maven.changelog.range} days,
</j:if>
Total Commits:
<x:expr select="count(./changelog-entry)"/>
Total Number of Files Changed:

View File

@@ -23,6 +23,9 @@
<author email="evenisse@ifrance.com">Emmanuel Venisse</author>
</properties>
<body>
<release version="1.6.1-SNAPSHOT" date="In SVN">
<action dev="ltheussl" type="fix" issue="MPFILEACTIVITY-3" due-to="Dennis Lundberg">Only show the timeframe when maven.changelog.type=range</action>
</release>
<release version="1.6" date="2006-01-29">
<action dev="ltheussl" type="fix" issue="MPFILEACTIVITY-2">File activity plugin creates wrong links for Subversion repositories. Use
<code>maven.changelog.svn.baseurl</code>property.