You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by jk...@apache.org on 2006/07/15 20:50:57 UTC

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

Author: jkuhnert
Date: Sat Jul 15 11:50:56 2006
New Revision: 422277

URL: http://svn.apache.org/viewvc?rev=422277&view=rev
Log:
Fixed demo pom to use jetty6 repo for the "mvn jetty6:run" task

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

Modified: tapestry/tapestry4/trunk/tapestry-examples/TimeTracker/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-examples/TimeTracker/pom.xml?rev=422277&r1=422276&r2=422277&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-examples/TimeTracker/pom.xml (original)
+++ tapestry/tapestry4/trunk/tapestry-examples/TimeTracker/pom.xml Sat Jul 15 11:50:56 2006
@@ -14,7 +14,7 @@
     </parent>
     <name>Tapestry Core Library</name>
     <inceptionYear>2006</inceptionYear>
-    
+
     <dependencies>
         <dependency>
             <groupId>org.apache.tapestry</groupId>
@@ -42,12 +42,6 @@
             <artifactId>commons-logging</artifactId>
         </dependency>
         <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>3.8.1</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
             <groupId>javax.servlet</groupId>
             <artifactId>servlet-api</artifactId>
         </dependency>
@@ -89,11 +83,12 @@
     <build>
         <sourceDirectory>src/java</sourceDirectory>
         <testSourceDirectory>src/test</testSourceDirectory>
-
+        
         <plugins>
             <plugin>
                 <groupId>org.mortbay.jetty</groupId>
                 <artifactId>maven-jetty6-plugin</artifactId>
+                <version>6.0-SNAPSHOT</version>
                 <configuration>
                     <webAppSourceDirectory>${basedir}/src/context</webAppSourceDirectory>
                     <scanIntervalSeconds>10</scanIntervalSeconds>
@@ -129,4 +124,13 @@
             </plugin>
         </plugins>
     </reporting>
+
+    <pluginRepositories>
+        <pluginRepository>
+            <id>mortbay-repo</id>
+            <name>mortbay-repo</name>
+            <url>http://www.mortbay.org/maven2/snapshot</url>
+        </pluginRepository>
+    </pluginRepositories>
+
 </project>