Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2015-03-18 16:13:42 +0000
committerDani Megert2015-03-18 16:13:42 +0000
commit2d75c3db3bdc09d38a1484a833dd6f39c473082c (patch)
tree455e0f2e195d6a07166df7a021d355670327cfe0 /org.eclipse.search.tests
parent90c35fbcc356742bd8fb4a7b3da0422ec98dfb95 (diff)
downloadeclipse.platform.text-2d75c3db3bdc09d38a1484a833dd6f39c473082c.tar.gz
eclipse.platform.text-2d75c3db3bdc09d38a1484a833dd6f39c473082c.tar.xz
eclipse.platform.text-2d75c3db3bdc09d38a1484a833dd6f39c473082c.zip
Diffstat (limited to 'org.eclipse.search.tests')
-rw-r--r--org.eclipse.search.tests/pom.xml31
1 files changed, 30 insertions, 1 deletions
diff --git a/org.eclipse.search.tests/pom.xml b/org.eclipse.search.tests/pom.xml
index 40a13dfc9a5..40820913681 100644
--- a/org.eclipse.search.tests/pom.xml
+++ b/org.eclipse.search.tests/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2014 Eclipse Foundation and others.
+ Copyright (c) 2012, 2015 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -21,4 +21,33 @@
<artifactId>org.eclipse.search.tests</artifactId>
<version>3.8.300-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
+ <properties>
+ <testSuite>${project.artifactId}</testSuite>
+ <testClass>org.eclipse.search.tests.AllSearchTests</testClass>
+ </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <useUIHarness>true</useUIHarness>
+ <useUIThread>true</useUIThread>
+ <dependencies>
+ <dependency>
+ <type>eclipse-plugin</type>
+ <artifactId>org.eclipse.osgi.compatibility.state</artifactId>
+ <version>0.0.0</version>
+ </dependency>
+ <dependency>
+ <type>eclipse-plugin</type>
+ <artifactId>org.eclipse.equinox.event</artifactId>
+ <version>0.0.0</version>
+ </dependency>
+ </dependencies>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top