Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2017-07-20 14:32:40 +0000
committerAlexander Kurtakov2017-07-20 19:23:06 +0000
commit3d91a03ab7864953c8e774d2fe6f3bf8be2d35ec (patch)
tree8f5665185e38c402836bc1954c1c575497ff8398 /tests/org.eclipse.compare.tests
parentbfbf011353bb499f7707736cbfb3f1bad02e3c2a (diff)
downloadeclipse.platform.team-3d91a03ab7864953c8e774d2fe6f3bf8be2d35ec.tar.gz
eclipse.platform.team-3d91a03ab7864953c8e774d2fe6f3bf8be2d35ec.tar.xz
eclipse.platform.team-3d91a03ab7864953c8e774d2fe6f3bf8be2d35ec.zip
Bug 476065 - Allow to run team tests with tycho-surefire-plugin
Change-Id: Ieab3a047650cb34621eee715e308165d5bf31927 Signed-off-by: Mickael Istria <mistria@redhat.com>
Diffstat (limited to 'tests/org.eclipse.compare.tests')
-rw-r--r--tests/org.eclipse.compare.tests/pom.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/org.eclipse.compare.tests/pom.xml b/tests/org.eclipse.compare.tests/pom.xml
index 2abd258f7..58b7d0eae 100644
--- a/tests/org.eclipse.compare.tests/pom.xml
+++ b/tests/org.eclipse.compare.tests/pom.xml
@@ -20,4 +20,21 @@
<artifactId>org.eclipse.compare.tests</artifactId>
<version>3.6.100-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
+
+ <properties>
+ <testSuite>${project.artifactId}</testSuite>
+ <testClass>org.eclipse.compare.tests.AllTests</testClass>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <configuration>
+ <useUIHarness>true</useUIHarness>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top