Fix MPSCM-25

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115936 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
dion
2004-08-09 01:25:47 +00:00
parent 04b8919f58
commit 81754777ba
3 changed files with 6 additions and 2 deletions

View File

@@ -356,7 +356,7 @@
<goal name="scm:cvs-create-patch">
<ant:delete dir="${maven.scm.cvs.patch.dir}"/>
<ant:mkdir dir="${maven.scm.cvs.patch.dir}"/>
<cvs command="diff -u -N -R" output="${maven.scm.cvs.patch.dir}/${maven.scm.cvs.patch.file}"
<cvs command="diff -u -w -N -R" output="${maven.scm.cvs.patch.dir}/${maven.scm.cvs.patch.file}"
quiet="${maven.scm.cvs.quiet}"
cvsRsh="${maven.scm.cvs.rsh}"
cvsRoot="${maven.scm.cvs.root}"

View File

@@ -22,7 +22,7 @@
<extend>../plugin-parent/project.xml</extend>
<id>maven-scm-plugin</id>
<name>Maven Source Control Management Plug-in</name>
<currentVersion>1.4.1</currentVersion>
<currentVersion>1.4.2-SNAPSHOT</currentVersion>
<description>A plugin for SCM tasks, currently CVS.</description>
<shortDescription>SCM Plugin for Maven. Requires Maven 1.0 RC2.</shortDescription>
<url>http://maven.apache.org/reference/plugins/scm/</url>

View File

@@ -24,6 +24,10 @@
<author email="brett@apache.org">Brett Porter</author>
</properties>
<body>
<release version="1.4.2-SNAPSHOT" date="in CVS">
<action dev="dion" type="fix" issue="MPSCM-25">Ignore whitespace when creating a patch</action>
</release>
<release version="1.4.1" date="2004-07-30">
<action dev="dion" type="fix" issue="MPSCM-16">Trim goals after prompting from the user</action>
<action dev="dion" type="add" issue="MPSCM-20">Add scm:cvs-create-patch goal to help in creating patches</action>