Add maven.changelog.basedir property for users that don't use basedir directory for checkout.
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114669 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
40fa1aead4
commit
9ba04797c3
@ -53,7 +53,7 @@
|
|||||||
<ant:echo>Generating the changelog report</ant:echo>
|
<ant:echo>Generating the changelog report</ant:echo>
|
||||||
|
|
||||||
<changelog:changelog
|
<changelog:changelog
|
||||||
basedir="${basedir}"
|
basedir="${maven.changelog.basedir}"
|
||||||
developers="${pom.developers}"
|
developers="${pom.developers}"
|
||||||
factory="${maven.changelog.factory}"
|
factory="${maven.changelog.factory}"
|
||||||
output="${maven.build.dir}/changelog.xml"
|
output="${maven.build.dir}/changelog.xml"
|
||||||
|
|||||||
@ -5,6 +5,7 @@
|
|||||||
# -------------------------------------------------------------------
|
# -------------------------------------------------------------------
|
||||||
|
|
||||||
# These three don't belong here.
|
# These three don't belong here.
|
||||||
|
maven.changelog.basedir=${basedir}
|
||||||
maven.build.dir = ${basedir}/target
|
maven.build.dir = ${basedir}/target
|
||||||
maven.gen.docs = ${maven.build.dir}/generated-xdocs
|
maven.gen.docs = ${maven.build.dir}/generated-xdocs
|
||||||
maven.docs.outputencoding = ISO-8859-1
|
maven.docs.outputencoding = ISO-8859-1
|
||||||
|
|||||||
@ -9,6 +9,9 @@
|
|||||||
<body>
|
<body>
|
||||||
|
|
||||||
<release version="1.4" date="in CVS">
|
<release version="1.4" date="in CVS">
|
||||||
|
<action dev="evenisse" type="update">
|
||||||
|
Add maven.changelog.basedir property.
|
||||||
|
</action>
|
||||||
<action dev="epugh" type="update">
|
<action dev="epugh" type="update">
|
||||||
If, using the cvslib, fails, then fall back to using
|
If, using the cvslib, fails, then fall back to using
|
||||||
the command line call to the cvs executable.
|
the command line call to the cvs executable.
|
||||||
|
|||||||
@ -14,6 +14,15 @@
|
|||||||
<th>Optional?</th>
|
<th>Optional?</th>
|
||||||
<th>Description</th>
|
<th>Description</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>maven.changelog.basedir</td>
|
||||||
|
<td>Yes</td>
|
||||||
|
<td>
|
||||||
|
Specifies the basedir for changelog execution.
|
||||||
|
This is used by the "changelog" goal. The default value is
|
||||||
|
<code>basedir</code>.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>maven.changelog.range</td>
|
<td>maven.changelog.range</td>
|
||||||
<td>Yes</td>
|
<td>Yes</td>
|
||||||
|
|||||||
@ -60,7 +60,7 @@
|
|||||||
|
|
||||||
<j:if test="${changelogPresent != 'true'}">
|
<j:if test="${changelogPresent != 'true'}">
|
||||||
<changelog:changelog
|
<changelog:changelog
|
||||||
basedir="${basedir}"
|
basedir="${maven.changelog.basedir}"
|
||||||
developers="${pom.developers}"
|
developers="${pom.developers}"
|
||||||
factory="${factory}"
|
factory="${factory}"
|
||||||
output="${maven.build.dir}/changelog.xml"
|
output="${maven.build.dir}/changelog.xml"
|
||||||
|
|||||||
@ -4,6 +4,8 @@
|
|||||||
# Activity log plugin.
|
# Activity log plugin.
|
||||||
# -------------------------------------------------------------------
|
# -------------------------------------------------------------------
|
||||||
|
|
||||||
|
maven.changelog.basedir=${basedir}
|
||||||
|
|
||||||
maven.build.dir = ${basedir}/target
|
maven.build.dir = ${basedir}/target
|
||||||
|
|
||||||
maven.docs.outputencoding = ISO-8859-1
|
maven.docs.outputencoding = ISO-8859-1
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
<pomVersion>3</pomVersion>
|
<pomVersion>3</pomVersion>
|
||||||
<id>maven-developer-activity-plugin</id>
|
<id>maven-developer-activity-plugin</id>
|
||||||
<name>Maven Developer Activity Plug-in</name>
|
<name>Maven Developer Activity Plug-in</name>
|
||||||
<currentVersion>1.3</currentVersion>
|
<currentVersion>1.4-SNAPSHOT</currentVersion>
|
||||||
<description>This document provides a report of activity in terms of CVS commits and breaks it out by developer.</description>
|
<description>This document provides a report of activity in terms of CVS commits and breaks it out by developer.</description>
|
||||||
<shortDescription>Developer Activity report</shortDescription>
|
<shortDescription>Developer Activity report</shortDescription>
|
||||||
<url>http://maven.apache.org/reference/plugins/developer-activity/</url>
|
<url>http://maven.apache.org/reference/plugins/developer-activity/</url>
|
||||||
|
|||||||
@ -6,6 +6,11 @@
|
|||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
<release version="1.4" date="In CVS">
|
||||||
|
<action dev="evenisse" type="update">
|
||||||
|
Add maven.changelog.basedir property.
|
||||||
|
</action>
|
||||||
|
</release>
|
||||||
<release version="1.3" date="2003-09-29">
|
<release version="1.3" date="2003-09-29">
|
||||||
<action dev="evenisse" type="add">
|
<action dev="evenisse" type="add">
|
||||||
Add link with team list.
|
Add link with team list.
|
||||||
|
|||||||
@ -69,7 +69,7 @@
|
|||||||
|
|
||||||
<j:if test="${changelogPresent != 'true'}">
|
<j:if test="${changelogPresent != 'true'}">
|
||||||
<changelog:changelog
|
<changelog:changelog
|
||||||
basedir="${basedir}"
|
basedir="${maven.changelog.basedir}"
|
||||||
developers="${pom.developers}"
|
developers="${pom.developers}"
|
||||||
factory="${factory}"
|
factory="${factory}"
|
||||||
output="${maven.build.dir}/changelog.xml"
|
output="${maven.build.dir}/changelog.xml"
|
||||||
|
|||||||
@ -4,6 +4,8 @@
|
|||||||
# Activity log plugin.
|
# Activity log plugin.
|
||||||
# -------------------------------------------------------------------
|
# -------------------------------------------------------------------
|
||||||
|
|
||||||
|
maven.changelog.basedir=${basedir}
|
||||||
|
|
||||||
maven.build.dir = ${basedir}/target
|
maven.build.dir = ${basedir}/target
|
||||||
|
|
||||||
maven.docs.outputencoding = ISO-8859-1
|
maven.docs.outputencoding = ISO-8859-1
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
<pomVersion>3</pomVersion>
|
<pomVersion>3</pomVersion>
|
||||||
<id>maven-file-activity-plugin</id>
|
<id>maven-file-activity-plugin</id>
|
||||||
<name>Maven File Activity Plug-in</name>
|
<name>Maven File Activity Plug-in</name>
|
||||||
<currentVersion>1.3</currentVersion>
|
<currentVersion>1.4-SNAPSHOT</currentVersion>
|
||||||
<!-- Gump integration -->
|
<!-- Gump integration -->
|
||||||
|
|
||||||
<gumpRepositoryId>jakarta</gumpRepositoryId>
|
<gumpRepositoryId>jakarta</gumpRepositoryId>
|
||||||
|
|||||||
@ -6,6 +6,11 @@
|
|||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
<release version="1.4" date="In CVS">
|
||||||
|
<action dev="evenisse" type="update">
|
||||||
|
Add maven.changelog.basedir property.
|
||||||
|
</action>
|
||||||
|
</release>
|
||||||
<release version="1.3" date="2003-09-29">
|
<release version="1.3" date="2003-09-29">
|
||||||
<action dev="evenisse" type="fix">
|
<action dev="evenisse" type="fix">
|
||||||
Fix url generation when pom.repository.url isn't empty.
|
Fix url generation when pom.repository.url isn't empty.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user