Skip to content
This repository has been archived by the owner on Nov 19, 2018. It is now read-only.

Commit

Permalink
ARQ-794 Switched test exclusion logic. Test run by default, but bypas…
Browse files Browse the repository at this point in the history
…sed in build-server profile
  • Loading branch information
aslakknutsen committed Feb 29, 2012
1 parent c8ff352 commit d333f18
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
16 changes: 16 additions & 0 deletions android-impl/pom.xml
Expand Up @@ -98,4 +98,20 @@
</dependency>
</dependencies>

<profiles>
<profile>
<id>build-server</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>
12 changes: 1 addition & 11 deletions android-tests/pom.xml
Expand Up @@ -157,12 +157,7 @@

<profiles>
<profile>
<id>default</id>

<activation>
<activeByDefault>true</activeByDefault>
</activation>

<id>build-server</id>
<build>
<plugins>
<plugin>
Expand All @@ -174,11 +169,6 @@
</plugins>
</build>
</profile>

<!-- This profile executes tests, however it needs a DISPLAY, therefore it is not enabled by default -->
<profile>
<id>functional-tests</id>
</profile>
</profiles>

</project>

0 comments on commit d333f18

Please sign in to comment.