You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2007/02/18 21:52:10 UTC

svn commit: r508993 - /tapestry/tapestry5/tapestry-simple/trunk/src/main/resources/archetype-resources/pom.xml

Author: hlship
Date: Sun Feb 18 12:52:09 2007
New Revision: 508993

URL: http://svn.apache.org/viewvc?view=rev&rev=508993
Log:
Enable the Tapestry Component Report in modules generated by the tapestry-simple archetype.

Modified:
    tapestry/tapestry5/tapestry-simple/trunk/src/main/resources/archetype-resources/pom.xml

Modified: tapestry/tapestry5/tapestry-simple/trunk/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-simple/trunk/src/main/resources/archetype-resources/pom.xml?view=diff&rev=508993&r1=508992&r2=508993
==============================================================================
--- tapestry/tapestry5/tapestry-simple/trunk/src/main/resources/archetype-resources/pom.xml (original)
+++ tapestry/tapestry5/tapestry-simple/trunk/src/main/resources/archetype-resources/pom.xml Sun Feb 18 12:52:09 2007
@@ -10,7 +10,7 @@
         <dependency>
             <groupId>org.apache.tapestry</groupId>
             <artifactId>tapestry-core</artifactId>
-            <version>5.0.2-SNAPSHOT</version>
+            <version>${tapestry-release-version}</version>
         </dependency>
         <!-- This can be removed if not desired. Tapestry uses commons-logging, not Log4J explicitly. -->
         <dependency>
@@ -46,4 +46,21 @@
             </plugin>
         </plugins>
     </build>
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.tapestry</groupId>
+                <artifactId>tapestry-component-report</artifactId>
+                <version>${tapestry-release-version}</version>
+                <configuration>
+                    <rootPackage>${packageName}</rootPackage>
+                </configuration>                
+            </plugin>
+        </plugins>
+    </reporting>
+    
+    
+    <properties>
+        <tapestry-release-version>5.0.2-SNAPSHOT</tapestry-release-version>
+    </properties>
 </project>