forked from eclipse-linuxtools/org.eclipse.linuxtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
113 lines (109 loc) · 3.46 KB
/
pom.xml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<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.linuxtools</groupId>
<artifactId>org.eclipse.linuxtools.docker</artifactId>
<version>5.18.1</version>
</parent>
<artifactId>org.eclipse.linuxtools.docker.ui.tests</artifactId>
<version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<tycho.test.jvmArgs>-Xmx800m</tycho.test.jvmArgs>
<tycho.surefire.timeout>900</tycho.surefire.timeout>
</properties>
<profiles>
<profile>
<!-- Ignore optional deps to swt.macosx -->
<id>ignore-mac-deps-on-other-os-and-skip-swtbot-tests</id>
<activation>
<os>
<family>!mac</family>
</os>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<configuration>
<dependency-resolution>
<optionalDependencies>ignore</optionalDependencies>
</dependency-resolution>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<configuration>
<!-- skipTests>true</skipTests -->
<!-- useUIHarness>true</useUIHarness -->
<useUIThread>false</useUIThread>
<!-- kill test JVM if tests take more than 10 minutes (600 seconds)
to finish -->
<forkedProcessTimeoutInSeconds>${tycho.surefire.timeout}</forkedProcessTimeoutInSeconds>
<argLine>${tycho.test.jvmArgs}</argLine>
<includes>
<include>**/*Test.class</include>
</includes>
<excludes>
<exclude>**/*SWTBotTest.class</exclude>
</excludes>
<excludedGroups>
org.eclipse.linuxtools.docker.testCategory.NativeLinuxDocker
</excludedGroups>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>mac</id>
<activation>
<os>
<family>mac</family>
</os>
</activation>
<properties>
<!-- Workaround for https://bugs.eclipse.org/bugs/show_bug.cgi?id=388084 -->
<!-- THE FOLLOWING LINE MUST NOT BE BROKEN BY AUTOFORMATTING -->
<tycho.test.jvmArgs>-Xmx800m -XstartOnFirstThread</tycho.test.jvmArgs>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<configuration>
<environments>
<environment>
<os>macosx</os>
<ws>cocoa</ws>
<arch>x86_64</arch>
</environment>
</environments>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<configuration>
<!-- skipTests>true</skipTests -->
<!-- useUIHarness>true</useUIHarness -->
<useUIThread>false</useUIThread>
<!-- kill test JVM if tests take more than 10 minutes (600 seconds) to
finish -->
<forkedProcessTimeoutInSeconds>${tycho.surefire.timeout}</forkedProcessTimeoutInSeconds>
<argLine>${tycho.test.jvmArgs}</argLine>
<!-- execute all tests on Mac -->
<includes>
<include>**/*Test.class</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>