You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by jk...@apache.org on 2006/06/29 20:22:17 UTC

svn commit: r418105 - /tapestry/tapestry4/trunk/examples/TimeTracker/pom.xml

Author: jkuhnert
Date: Thu Jun 29 11:22:17 2006
New Revision: 418105

URL: http://svn.apache.org/viewvc?rev=418105&view=rev
Log:
Fix for jira #TAPESTRY-997

Modified:
    tapestry/tapestry4/trunk/examples/TimeTracker/pom.xml

Modified: tapestry/tapestry4/trunk/examples/TimeTracker/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/examples/TimeTracker/pom.xml?rev=418105&r1=418104&r2=418105&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/examples/TimeTracker/pom.xml (original)
+++ tapestry/tapestry4/trunk/examples/TimeTracker/pom.xml Thu Jun 29 11:22:17 2006
@@ -78,20 +78,45 @@
             <artifactId>commons-dbcp</artifactId>
             <version>1.2.1</version>
         </dependency>
+        <dependency>
+            <groupId>hsqldb</groupId>
+            <artifactId>hsqldb</artifactId>
+            <version>1.8.0.1</version>
+        </dependency>
     </dependencies>
     <build>
         <sourceDirectory>src/java</sourceDirectory>
         <testSourceDirectory>src/test</testSourceDirectory>
 
         <plugins>
-                <plugin>
+            <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-surefire-plugin</artifactId>
-                <version>2.2</version> 
+                <version>2.2</version>
                 <configuration>
                     <testSourceDirectory>src/test</testSourceDirectory>
                 </configuration>
-                </plugin>
+            </plugin>
+            <plugin>
+                <groupId>org.mortbay.jetty</groupId>
+                <artifactId>maven-jetty6-plugin</artifactId>
+                <configuration>
+                    <webAppSourceDirectory>${basedir}/src/context</webAppSourceDirectory>
+                    <scanIntervalSeconds>10</scanIntervalSeconds>
+                </configuration>
+                <dependencies>
+                    <dependency>
+                        <groupId>commons-logging</groupId>
+                        <artifactId>commons-logging</artifactId>
+                        <version>1.0.4</version>
+                    </dependency>
+                    <dependency>
+                        <groupId>log4j</groupId>
+                        <artifactId>log4j</artifactId>
+                        <version>1.2.13</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
         </plugins>
     </build>
     <reporting>
@@ -109,4 +134,4 @@
             </plugin>
         </plugins>
     </reporting>
-</project>
\ No newline at end of file
+</project>