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 2006/08/21 02:00:22 UTC

svn commit: r433089 - /tapestry/tapestry5/tapestry-project/trunk/pom.xml

Author: hlship
Date: Sun Aug 20 17:00:20 2006
New Revision: 433089

URL: http://svn.apache.org/viewvc?rev=433089&view=rev
Log:
Tweak a number of settings to get the Surefire report to generate.

Modified:
    tapestry/tapestry5/tapestry-project/trunk/pom.xml

Modified: tapestry/tapestry5/tapestry-project/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-project/trunk/pom.xml?rev=433089&r1=433088&r2=433089&view=diff
==============================================================================
--- tapestry/tapestry5/tapestry-project/trunk/pom.xml (original)
+++ tapestry/tapestry5/tapestry-project/trunk/pom.xml Sun Aug 20 17:00:20 2006
@@ -41,6 +41,18 @@
     <dependencyManagement>
         <dependencies>
             <dependency>
+                <groupId>log4j</groupId>
+                <artifactId>log4j</artifactId>
+                <version>1.2.9</version>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>javax.servlet</groupId>
+                <artifactId>servlet-api</artifactId>
+                <version>2.4</version>
+                <scope>provided</scope>
+            </dependency>
+            <dependency>
                 <groupId>javassist</groupId>
                 <artifactId>javassist</artifactId>
                 <version>3.1</version>
@@ -111,6 +123,11 @@
                     <artifactId>maven-site-plugin</artifactId>
                     <version>2.0-beta-5</version>
                 </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-surefire-plugin</artifactId>
+                    <version>2.8-SNAPSHOT</version>
+                </plugin>
             </plugins>
         </pluginManagement>
     </build>
@@ -135,8 +152,22 @@
     </reporting>
     <repositories>
         <repository>
-            <id>jboss</id>
-            <url>http://repository.jboss.com/maven2</url>
+            <id>apache.snapshots</id>
+            <url>http://people.apache.org/maven-snapshot-repository</url>
+        </repository>
+        <repository>
+            <id>howardlewisship.com</id>
+            <url>http://howardlewisship.com/repository</url>
         </repository>
     </repositories>
+    <pluginRepositories>
+        <pluginRepository>
+            <id>apache.snapshots</id>
+            <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+        </pluginRepository>
+        <pluginRepository>
+            <id>howardlewisship.com</id>
+            <url>http://howardlewisship.com/repository</url>
+        </pluginRepository>
+    </pluginRepositories>
 </project>