blob: 9fc00c89dd013e64c2672ca50d50503a4bc9ecc6 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<groupId>org.eclipse.papyrus.compare</groupId>
<artifactId>org.eclipse.papyrus.compare.releng</artifactId>
<version>0.7.0-SNAPSHOT</version>
</parent>
<artifactId>org.eclipse.papyrus.compare.tests.releng</artifactId>
<packaging>pom</packaging>
<properties>
<target.file>${target.folder}/compare.tests-${target.stream}</target.file>
<test-vmargs></test-vmargs>
</properties>
<profiles>
<profile>
<id>mac-test</id>
<activation>
<os>
<family>mac</family>
</os>
</activation>
<properties>
<target.file>${target.folder}/compare.tests-${target.stream}</target.file>
<test-vmargs>-XstartOnFirstThread</test-vmargs>
</properties>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<configuration>
<useUIHarness>true</useUIHarness>
<argLine>${test-vmargs}</argLine>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>org.eclipse.papyrus.compare.uml2.tests</module>
<module>org.eclipse.papyrus.compare.diagram.tests</module>
<module>org.eclipse.papyrus.compare.diagram.tests.git</module>
</modules>
</project>