MPCHANGELOG-39. Fix date format with clearcase.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115411 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
evenisse 2004-05-27 17:18:45 +00:00
parent f0c3e5e563
commit d32c563dbb
2 changed files with 3 additions and 1 deletions

View File

@ -19,6 +19,7 @@ package org.apache.maven.clearcaselib;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
// commons imports
import org.apache.commons.logging.Log;
@ -92,7 +93,7 @@ public class ClearcaseChangeLogGenerator extends AbstractChangeLogGenerator {
*/
protected String getScmDateArgument(Date before, Date to)
{
SimpleDateFormat sdf = new SimpleDateFormat("dd-MMM-yyyy");
SimpleDateFormat sdf = new SimpleDateFormat("dd-MMM-yyyy", Locale.ENGLISH);
String argument = sdf.format(before);
return argument;

View File

@ -27,6 +27,7 @@
<body>
<release version="1.6-SNAPSHOT" date="in CVS">
<action dev="evenisse" type="fix" issue="MPCHANGELOG-39">Fix date format with clearcase.</action>
<action dev="dion" type="update">Allow empty passwords in create-cvspass</action>
</release>