blob: cc4f419b201ecbe8ea844f3050cb7fa7ad9d91f0 [file] [log] [blame]
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>tests</artifactId>
<packaging>q7test</packaging>
<parent>
<groupId>org.eclipse.rcptt.tests</groupId>
<artifactId>base</artifactId>
<version>1.5.1-SNAPSHOT</version>
<relativePath>./pom-base.xml</relativePath>
</parent>
<build>
<plugins>
<plugin>
<groupId>${q7-maven-group}</groupId>
<artifactId>q7-maven-plugin</artifactId>
<version>${q7-maven-version}</version>
<extensions>true</extensions>
<configuration>
<aut>
<explicit>${rcpttBaseUrl}</explicit>
</aut>
<q7>
<version>${q7-version}</version>
</q7>
<skipTags>
<tag>skipExecution</tag>
</skipTags>
<testOptions>
<execTimeout>18000</execTimeout>
</testOptions>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>linux</id>
<activation><os><family>unix</family></os></activation>
<build>
<plugins>
<plugin>
<groupId>${q7-maven-group}</groupId>
<artifactId>q7-maven-plugin</artifactId>
<version>${q7-maven-version}</version>
<extensions>true</extensions>
<configuration>
<skipTags combine.children="append">
<tag>skipLinux</tag>
</skipTags>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>