Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | <artifactId>org.eclipse.vex.core.tests</artifactId> |
| 6 | <packaging>eclipse-test-plugin</packaging> |
| 7 | <version>1.0.0-SNAPSHOT</version> |
| 8 | <name>Vex Core Tests</name> |
| 9 | |
| 10 | <parent> |
| 11 | <artifactId>org.eclipse.vex-releng</artifactId> |
| 12 | <groupId>org.eclipse.vex</groupId> |
| 13 | <version>1.0.0-SNAPSHOT</version> |
| 14 | <relativePath>../org.eclipse.vex.releng/pom.xml</relativePath> |
| 15 | </parent> |
| 16 | |
| 17 | <build> |
| 18 | <plugins> |
| 19 | <plugin> |
| 20 | <groupId>org.sonatype.tycho</groupId> |
| 21 | <artifactId>maven-osgi-test-plugin</artifactId> |
| 22 | <version>${tycho-version}</version> |
| 23 | <configuration> |
| 24 | <useUIHarness>true</useUIHarness> |
| 25 | <testSuite>org.eclipse.vex.core.tests</testSuite> |
Florian Thienel | ea33051 | 2011-11-14 22:32:49 +0100 | [diff] [blame] | 26 | <testClass>org.eclipse.vex.core.tests.VEXCoreTestSuite</testClass> |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 27 | <dependencies> |
| 28 | <dependency> |
| 29 | <type>p2-installable-unit</type> |
| 30 | <artifactId>org.eclipse.sdk.ide</artifactId> |
| 31 | <version>0.0.0</version> |
| 32 | </dependency> |
| 33 | <dependency> |
| 34 | <type>p2-installable-unit</type> |
| 35 | <artifactId>org.eclipse.wst.xml.ui</artifactId> |
| 36 | <version>0.0.0</version> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <type>p2-installable-unit</type> |
| 40 | <artifactId>org.eclipse.wst.xsd.ui</artifactId> |
| 41 | <version>0.0.0</version> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <type>p2-installable-unit</type> |
| 45 | <artifactId>org.eclipse.wst.dtd.ui</artifactId> |
| 46 | <version>0.0.0</version> |
| 47 | </dependency> |
| 48 | </dependencies> |
| 49 | </configuration> |
| 50 | </plugin> |
| 51 | </plugins> |
| 52 | </build> |
| 53 | |
| 54 | </project> |