Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2015-03-22 16:13:22 +0000
committerDani Megert2015-03-22 16:13:22 +0000
commita578f44995591fc6cf45b1942e406941ec436806 (patch)
tree2697a93811133bc2cc7390c582226742b7592158 /org.eclipse.text.tests
parent813034ea2c3c4db4f283b37f2e8cbfe65cb47fea (diff)
downloadeclipse.platform.text-a578f44995591fc6cf45b1942e406941ec436806.tar.gz
eclipse.platform.text-a578f44995591fc6cf45b1942e406941ec436806.tar.xz
eclipse.platform.text-a578f44995591fc6cf45b1942e406941ec436806.zip
Enable tests for Tycho
Diffstat (limited to 'org.eclipse.text.tests')
-rw-r--r--org.eclipse.text.tests/pom.xml31
1 files changed, 30 insertions, 1 deletions
diff --git a/org.eclipse.text.tests/pom.xml b/org.eclipse.text.tests/pom.xml
index 8c99b01e1e1..e6f491dcf6a 100644
--- a/org.eclipse.text.tests/pom.xml
+++ b/org.eclipse.text.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.text.tests</artifactId>
<version>3.10.100-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
+ <properties>
+ <testSuite>${project.artifactId}</testSuite>
+ <testClass>org.eclipse.text.tests.EclipseTextTestSuite</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