You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by ws...@apache.org on 2006/12/24 18:19:35 UTC

svn commit: r490050 - in /struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java: ExampleSupport.java HelloWorld.java Login.java example/

Author: wsmoak
Date: Sun Dec 24 09:19:33 2006
New Revision: 490050

URL: http://svn.apache.org/viewvc?view=rev&rev=490050
Log:
Move the Java sources up a a level and filter in the package name.
Remove build script, set line endings.
WW-1412

Added:
    struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/ExampleSupport.java
      - copied, changed from r490047, struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/example/ExampleSupport.java
    struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/HelloWorld.java
      - copied, changed from r490047, struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/example/HelloWorld.java
    struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/Login.java
      - copied, changed from r490047, struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/example/Login.java
Removed:
    struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/example/

Copied: struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/ExampleSupport.java (from r490047, struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/example/ExampleSupport.java)
URL: http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/ExampleSupport.java?view=diff&rev=490050&p1=struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/example/ExampleSupport.java&r1=490047&p2=struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/ExampleSupport.java&r2=490050
==============================================================================
--- struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/example/ExampleSupport.java (original)
+++ struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/ExampleSupport.java Sun Dec 24 09:19:33 2006
@@ -19,7 +19,7 @@
  * under the License.
  */
 
-package example;
+package ${package};
 
 import com.opensymphony.xwork2.ActionSupport;
 

Copied: struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/HelloWorld.java (from r490047, struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/example/HelloWorld.java)
URL: http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/HelloWorld.java?view=diff&rev=490050&p1=struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/example/HelloWorld.java&r1=490047&p2=struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/HelloWorld.java&r2=490050
==============================================================================
--- struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/example/HelloWorld.java (original)
+++ struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/HelloWorld.java Sun Dec 24 09:19:33 2006
@@ -19,7 +19,7 @@
  * under the License.
  */
 
-package example;
+package ${package};
 
 /**
  * <code>Set welcome message.</code>

Copied: struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/Login.java (from r490047, struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/example/Login.java)
URL: http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/Login.java?view=diff&rev=490050&p1=struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/example/Login.java&r1=490047&p2=struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/Login.java&r2=490050
==============================================================================
--- struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/example/Login.java (original)
+++ struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/src/main/java/Login.java Sun Dec 24 09:19:33 2006
@@ -19,7 +19,7 @@
  * under the License.
  */
 
-package example;
+package ${package};
 
 public class Login extends ExampleSupport {