asobolev | 2b6b523 | 2011-09-13 08:41:20 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
asobolev | a51660e | 2011-09-14 05:03:48 +0000 | [diff] [blame] | 2 | <project |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 4 | xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | <parent> |
| 7 | <artifactId>core</artifactId> |
| 8 | <groupId>org.eclipse.dltk.core</groupId> |
| 9 | <version>1.0.0-SNAPSHOT</version> |
| 10 | <relativePath>../..</relativePath> |
| 11 | </parent> |
| 12 | <groupId>org.eclipse.dltk.core</groupId> |
| 13 | <artifactId>org.eclipse.dltk.ui.tests</artifactId> |
Alex Panchenko | 1266bdc | 2012-11-14 02:13:28 +0700 | [diff] [blame] | 14 | <version>5.0.0-SNAPSHOT</version> |
asobolev | a51660e | 2011-09-14 05:03:48 +0000 | [diff] [blame] | 15 | <packaging>eclipse-test-plugin</packaging> |
Andrey Sobolev | 1626617 | 2013-07-17 11:55:53 +0700 | [diff] [blame^] | 16 | <properties> |
| 17 | <os-jvm-flags></os-jvm-flags> |
| 18 | </properties> |
| 19 | |
| 20 | <profiles> |
| 21 | <profile> |
| 22 | <id>macosx-jvm-flags</id> |
| 23 | <activation> |
| 24 | <os> |
| 25 | <family>mac</family> |
| 26 | </os> |
| 27 | </activation> |
| 28 | <properties> |
| 29 | <os-jvm-flags>-XstartOnFirstThread</os-jvm-flags> |
| 30 | </properties> |
| 31 | </profile> |
| 32 | </profiles> |
| 33 | |
asobolev | a51660e | 2011-09-14 05:03:48 +0000 | [diff] [blame] | 34 | <build> |
| 35 | <plugins> |
| 36 | <plugin> |
| 37 | <groupId>org.eclipse.tycho</groupId> |
| 38 | <artifactId>tycho-surefire-plugin</artifactId> |
| 39 | <version>${tycho-version}</version> |
| 40 | <configuration> |
Alex Panchenko | 089cb9f | 2012-11-23 13:53:41 +0700 | [diff] [blame] | 41 | <testSuite>${project.artifactId}</testSuite> |
asobolev | a51660e | 2011-09-14 05:03:48 +0000 | [diff] [blame] | 42 | <testClass>org.eclipse.dltk.ui.tests.AllTests</testClass> |
asobolev | a51660e | 2011-09-14 05:03:48 +0000 | [diff] [blame] | 43 | <useUIHarness>true</useUIHarness> |
Andrey Sobolev | 1626617 | 2013-07-17 11:55:53 +0700 | [diff] [blame^] | 44 | <useUIThread>true</useUIThread> |
| 45 | <argLine>-Xms40m -Xmx1G ${os-jvm-flags}</argLine> |
asobolev | a51660e | 2011-09-14 05:03:48 +0000 | [diff] [blame] | 46 | <dependencies> |
| 47 | <dependency> |
| 48 | <type>p2-installable-unit</type> |
| 49 | <artifactId>org.eclipse.platform.feature.group</artifactId> |
| 50 | </dependency> |
| 51 | </dependencies> |
| 52 | </configuration> |
| 53 | </plugin> |
| 54 | </plugins> |
| 55 | </build> |
asobolev | 2b6b523 | 2011-09-13 08:41:20 +0000 | [diff] [blame] | 56 | </project> |