| <?xml version="1.0" encoding="UTF-8"?> |
| <project |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <groupId>org.eclipse.amalgam</groupId> |
| <artifactId>amalgam-tests-parent</artifactId> |
| <version>1.4.0-SNAPSHOT</version> |
| <relativePath>../org.eclipse.amalgam.pak.tests.releng</relativePath> |
| </parent> |
| <groupId>org.eclipse.amalgam</groupId> |
| <artifactId>org.eclipse.amalgam.pak.tests</artifactId> |
| <version>1.4.0-SNAPSHOT</version> |
| <packaging>eclipse-test-plugin</packaging> |
| |
| <properties> |
| <ui.test.vmargs>-Xmx512m -XX:MaxPermSize=256m</ui.test.vmargs> |
| </properties> |
| |
| <build> |
| <resources> |
| <resource> |
| <directory>src</directory> |
| <excludes> |
| <exclude>**/*.java</exclude> |
| </excludes> |
| </resource> |
| </resources> |
| <plugins> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-surefire-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <configuration> |
| <includes> |
| <include>org/eclipse/amalgam/pak/tests/unit/EPackageRegistryConsistencyTest.class |
| </include> |
| </includes> |
| <useUIHarness>true</useUIHarness> |
| <useUIThread>false</useUIThread> |
| <appArgLine>${ui.test.vmargs}</appArgLine> |
| <testFailureIgnore>true</testFailureIgnore> |
| <application>org.eclipse.ui.ide.workbench</application> |
| <dependencies> |
| <dependency> |
| <type>p2-installable-unit</type> |
| <artifactId>${product-id}</artifactId> |
| </dependency> |
| </dependencies> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |