Skip to content

Commit

Permalink
Move tests to run in integration-test phase
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuir committed Aug 12, 2010
1 parent 5e7526b commit 090901f
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions impl/pom.xml
Expand Up @@ -124,6 +124,35 @@

</dependencies>

<build>
<plugins>
<!--
skip unit test run, tests to be executed during
integration-test
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
<executions>
<execution>
<id>surefire-it</id>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<skip>false</skip>
</configuration>
</execution>
</executions>
</plugin>

</plugins>
</build>

<profiles>
<profile>
<id>default</id>
Expand Down

0 comments on commit 090901f

Please sign in to comment.