Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9fc00c89dd013e64c2672ca50d50503a4bc9ecc6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?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>

Back to the top