launch org.eclipse.dltk.core.tests tests
diff --git a/core/pom.xml b/core/pom.xml
index 7c6e18e..de9caec 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -89,7 +89,7 @@
</property>
</activation>
<properties>
- <tycho-version>0.10.0</tycho-version>
+ <tycho-version>0.11.0</tycho-version>
</properties>
</profile>
</profiles>
diff --git a/core/tests/org.eclipse.dltk.core.tests/pom.xml b/core/tests/org.eclipse.dltk.core.tests/pom.xml
index cac334b..94d2fef 100644
--- a/core/tests/org.eclipse.dltk.core.tests/pom.xml
+++ b/core/tests/org.eclipse.dltk.core.tests/pom.xml
@@ -11,5 +11,24 @@
<groupId>org.eclipse.dltk.core</groupId>
<artifactId>org.eclipse.dltk.core.tests</artifactId>
<version>3.0.0-SNAPSHOT</version>
- <packaging>eclipse-plugin</packaging>
+ <packaging>eclipse-test-plugin</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.sonatype.tycho</groupId>
+ <artifactId>maven-osgi-test-plugin</artifactId>
+ <version>${tycho-version}</version>
+ <configuration>
+ <testSuite>org.eclipse.dltk.core.tests</testSuite>
+ <testClass>org.eclipse.dltk.core.tests.AllTests</testClass>
+ <dependencies>
+ <dependency>
+ <type>p2-installable-unit</type>
+ <artifactId>org.eclipse.platform.feature.group</artifactId>
+ </dependency>
+ </dependencies>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>