You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by jh...@apache.org on 2007/08/27 19:23:53 UTC

svn commit: r570187 - /struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/java/IndexAction.java

Author: jholmes
Date: Mon Aug 27 10:23:53 2007
New Revision: 570187

URL: http://svn.apache.org/viewvc?rev=570187&view=rev
Log:
WW-2129 Struts 2 Starter archetype from Maven repository not working correctly

Modified:
    struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/java/IndexAction.java

Modified: struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/java/IndexAction.java
URL: http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/java/IndexAction.java?rev=570187&r1=570186&r2=570187&view=diff
==============================================================================
--- struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/java/IndexAction.java (original)
+++ struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/java/IndexAction.java Mon Aug 27 10:23:53 2007
@@ -30,7 +30,7 @@
     
     private Date now = new Date(System.currentTimeMillis());
     
-    @TypeConversion(converter = "com.fdar.apress.s2.DateConverter")
+    @TypeConversion(converter = "${package}.DateConverter")
     public Date getDateNow() { return now; }
     
     public String execute() throws Exception {