Author: ivaynberg
Date: Tue Jun 26 14:20:25 2007
New Revision: 550955

URL: http://svn.apache.org/viewvc?view=rev&rev=550955
Log:
fixed archetype, wicket parent pom precluded ,java resources from being copied 
properly. good for apps, not so for archetypes

Modified:
    incubator/wicket/trunk/archetypes/README
    incubator/wicket/trunk/archetypes/quickstart/pom.xml

Modified: incubator/wicket/trunk/archetypes/README
URL: 
http://svn.apache.org/viewvc/incubator/wicket/trunk/archetypes/README?view=diff&rev=550955&r1=550954&r2=550955
==============================================================================
--- incubator/wicket/trunk/archetypes/README (original)
+++ incubator/wicket/trunk/archetypes/README Tue Jun 26 14:20:25 2007
@@ -33,7 +33,7 @@
   -DgroupId=<groupId> \
   -DartifactId=<artifactId>
 e.g.:
->mvn archetype:create
+>mvn archetype:create \
   -DarchetypeGroupId=org.apache.wicket\
   -DarchetypeArtifactId=wicket-archetype-quickstart \
   -DarchetypeVersion=1.3.0-SNAPSHOT \

Modified: incubator/wicket/trunk/archetypes/quickstart/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/wicket/trunk/archetypes/quickstart/pom.xml?view=diff&rev=550955&r1=550954&r2=550955
==============================================================================
--- incubator/wicket/trunk/archetypes/quickstart/pom.xml (original)
+++ incubator/wicket/trunk/archetypes/quickstart/pom.xml Tue Jun 26 14:20:25 
2007
@@ -10,4 +10,34 @@
   <artifactId>wicket-archetype-quickstart</artifactId>
   <packaging>maven-plugin</packaging>
   <name>Wicket Quickstart Archetype</name>
+
+       <build>
+               <resources>
+                       <resource>
+                               <filtering>true</filtering>
+                               <directory>${basedir}/src/main/java</directory>
+                               <includes>
+                                       <include>**/*</include>
+                               </includes>
+                       </resource>
+                       <resource>
+                               <filtering>true</filtering>
+                               
<directory>${basedir}/src/main/resources</directory>
+                               <includes>
+                                       <include>**/*</include>
+                               </includes>
+                       </resource>
+               </resources>
+
+               <testResources>
+                       <testResource>
+                               <filtering>true</filtering>
+                               <directory>${basedir}/src/test/java</directory>
+                               <includes>
+                                       <include>**/*</include>
+                               </includes>
+                       </testResource>
+               </testResources>
+       </build>
+       
 </project>


Reply via email to