Author: sebb
Date: Thu Feb 24 12:28:41 2011
New Revision: 1074124
URL: http://svn.apache.org/viewvc?rev=1074124&view=rev
Log:
Give the changes output file the correct name
Modified:
commons/proper/math/trunk/pom.xml
commons/proper/math/trunk/src/site/xdoc/changes.xml
Modified: commons/proper/math/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/pom.xml?rev=1074124&r1=1074123&r2=1074124&view=diff
==============================================================================
--- commons/proper/math/trunk/pom.xml (original)
+++ commons/proper/math/trunk/pom.xml Thu Feb 24 12:28:41 2011
@@ -322,7 +322,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
- <version>2.3</version>
+ <version>2.4</version>
<configuration>
<xmlPath>${basedir}/src/site/xdoc/changes.xml</xmlPath>
<issueLinkTemplatePerSystem>
@@ -330,6 +330,9 @@
</issueLinkTemplatePerSystem>
<template>math-release-notes.vm</template>
<templateDirectory>templates</templateDirectory>
+ <!-- Give the output file its proper name -->
+ <announcementFile>RELEASE-NOTES.txt</announcementFile>
+ <!-- Could use ../../ to overwrite the main copy -->
</configuration>
<reportSets>
<reportSet>
Modified: commons/proper/math/trunk/src/site/xdoc/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/site/xdoc/changes.xml?rev=1074124&r1=1074123&r2=1074124&view=diff
==============================================================================
--- commons/proper/math/trunk/src/site/xdoc/changes.xml (original)
+++ commons/proper/math/trunk/src/site/xdoc/changes.xml Thu Feb 24 12:28:41 2011
@@ -31,7 +31,7 @@ SVN commits. TBA how to use this with SV
To generate the release notes from this file:
mvn changes:announcement-generate
-mv target/announcement/math-release-notes.vm RELEASE_NOTES.txt
+mv target/announcement/RELEASE_NOTES.txt RELEASE_NOTES.txt
then tweak the formatting
(e.g. copy/paste the description to replace the one-line version)
and commit
|