Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.tasks.tests/pom.xml')
-rw-r--r--org.eclipse.mylyn.tasks.tests/pom.xml14
1 files changed, 13 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.tasks.tests/pom.xml b/org.eclipse.mylyn.tasks.tests/pom.xml
index 8401972c6..620226289 100644
--- a/org.eclipse.mylyn.tasks.tests/pom.xml
+++ b/org.eclipse.mylyn.tasks.tests/pom.xml
@@ -10,9 +10,21 @@
<groupId>org.eclipse.mylyn.tasks</groupId>
<artifactId>org.eclipse.mylyn.tasks.tests</artifactId>
<version>3.7.0-SNAPSHOT</version>
- <packaging>eclipse-plugin</packaging>
+ <packaging>eclipse-test-plugin</packaging>
+ <properties>
+ <test.suite>${project.artifactId}.AllTasksTests</test.suite>
+ </properties>
<build>
<plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <version>${tycho-version}</version>
+ <configuration>
+ <testSuite>${project.artifactId}</testSuite>
+ <testClass>${test.suite}</testClass>
+ </configuration>
+ </plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-source-plugin</artifactId>

Back to the top