Author: rhauch
Date: 2008-04-22 13:35:34 -0400 (Tue, 22 Apr 2008)
New Revision: 103
Modified:
trunk/dna-integration-tests/pom.xml
Log:
DNA-54: Set up continuous integration with Hudson
http://jira.jboss.org/jira/browse/DNA-54
Changed the "dna-integration-tests" project to run the unit tests only during
the "integration-test" phase of Maven.
Modified: trunk/dna-integration-tests/pom.xml
===================================================================
--- trunk/dna-integration-tests/pom.xml 2008-04-22 16:05:24 UTC (rev 102)
+++ trunk/dna-integration-tests/pom.xml 2008-04-22 17:35:34 UTC (rev 103)
@@ -99,4 +99,29 @@
<artifactId>derby</artifactId>
</dependency>
</dependencies>
+ <!--
+ Build configuration - run integration tests only in 'integration' phase
+ -->
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ <executions>
+ <execution>
+ <id>integration-test</id>
+ <phase>integration-test</phase>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ <configuration>
+ <skip>false</skip>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>