[seam-commits] Seam SVN: r10703 - modules/trunk/faces.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Wed Apr 29 02:00:15 EDT 2009
Author: dan.j.allen
Date: 2009-04-29 02:00:15 -0400 (Wed, 29 Apr 2009)
New Revision: 10703
Modified:
modules/trunk/faces/pom.xml
Log:
add surefire config
add seam-mock and validation-api test dependencies
Modified: modules/trunk/faces/pom.xml
===================================================================
--- modules/trunk/faces/pom.xml 2009-04-29 05:59:55 UTC (rev 10702)
+++ modules/trunk/faces/pom.xml 2009-04-29 06:00:15 UTC (rev 10703)
@@ -14,10 +14,39 @@
<version>3.0.0-SNAPSHOT</version>
<name>Seam Faces Module</name>
+ <build>
+ <plugins>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <suiteXmlFiles>
+ <suiteXmlFile>src/test/resources/test-suite.xml</suiteXmlFile>
+ </suiteXmlFiles>
+ </configuration>
+ </plugin>
+
+ </plugins>
+ </build>
+
<dependencies>
<dependency>
<groupId>${seam.groupId}</groupId>
+ <artifactId>seam-mock</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+ <!-- doesn't inherit from seam-international because scope is provided -->
+ <dependency>
+ <groupId>javax.validation</groupId>
+ <artifactId>validation-api</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>${seam.groupId}</groupId>
<artifactId>seam-el</artifactId>
</dependency>
More information about the seam-commits
mailing list