Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.tests/pom.xml')
-rw-r--r--org.eclipse.mylyn.bugzilla.tests/pom.xml26
1 files changed, 19 insertions, 7 deletions
diff --git a/org.eclipse.mylyn.bugzilla.tests/pom.xml b/org.eclipse.mylyn.bugzilla.tests/pom.xml
index 2efb966d8..9dcf62445 100644
--- a/org.eclipse.mylyn.bugzilla.tests/pom.xml
+++ b/org.eclipse.mylyn.bugzilla.tests/pom.xml
@@ -10,14 +10,11 @@
<groupId>org.eclipse.mylyn.tasks</groupId>
<artifactId>org.eclipse.mylyn.bugzilla.tests</artifactId>
<version>3.7.0-SNAPSHOT</version>
- <packaging>eclipse-plugin</packaging>
+ <packaging>eclipse-test-plugin</packaging>
+ <properties>
+ <test.suite>${project.artifactId}.AllBugzillaTests</test.suite>
+ </properties>
<build>
- <plugins>
- <plugin>
- <groupId>org.eclipse.tycho</groupId>
- <artifactId>tycho-source-plugin</artifactId>
- </plugin>
- </plugins>
<!-- resources for standalone tests -->
<resources>
<resource>
@@ -27,5 +24,20 @@
</includes>
</resource>
</resources>
+ <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>
+ </plugin>
+ </plugins>
</build>
</project>

Back to the top