Author: veithen Date: Wed Jan 4 20:53:43 2012 New Revision: 1227317 URL: http://svn.apache.org/viewvc?rev=1227317&view=rev Log: Fixed an incorrect date format.
Modified: axis/axis1/java/trunk/axis/pom.xml Modified: axis/axis1/java/trunk/axis/pom.xml URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis/pom.xml?rev=1227317&r1=1227316&r2=1227317&view=diff ============================================================================== --- axis/axis1/java/trunk/axis/pom.xml (original) +++ axis/axis1/java/trunk/axis/pom.xml Wed Jan 4 20:53:43 2012 @@ -152,7 +152,7 @@ <source> import java.util.Date import java.text.MessageFormat - project.properties['today'] = MessageFormat.format("{0,date,MMM dd, yyyy (hh:mm:ss z)}", new Date()) + project.properties['today'] = MessageFormat.format("{0,date,MMM dd, yyyy (HH:mm:ss z)}", new Date()) </source> </configuration> </execution>