Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2011-08-31 11:44:07 +0000
committerMatthias Sohn2011-09-05 07:39:45 +0000
commitb082d8e85868eb71dff321fc73bd46f887f9e38d (patch)
tree6448b026c173c07fa2217ddfa21889b6902cf9bf
parentdf6a2f7dfab1893ffcd14342ad086c3229781f14 (diff)
downloadegit-b082d8e85868eb71dff321fc73bd46f887f9e38d.tar.gz
egit-b082d8e85868eb71dff321fc73bd46f887f9e38d.tar.xz
egit-b082d8e85868eb71dff321fc73bd46f887f9e38d.zip
Don't use surefire plugin to run UI tests
The surefire plugin doesn't know how to correctly create the runtime classpath for OSGi based tests, instead it relies on the compile class path. This isn't guaranteed to work, in addition the tests will be run twice: once by the eclipe-test-plugin and again by the surefire plugin. Change-Id: Idd04ebfab2f1be4df8c27548aff75cd2ea21ade9 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r--org.eclipse.egit.mylyn.ui.test/pom.xml16
1 files changed, 0 insertions, 16 deletions
diff --git a/org.eclipse.egit.mylyn.ui.test/pom.xml b/org.eclipse.egit.mylyn.ui.test/pom.xml
index 28c49832c0..227d1d5ca7 100644
--- a/org.eclipse.egit.mylyn.ui.test/pom.xml
+++ b/org.eclipse.egit.mylyn.ui.test/pom.xml
@@ -117,22 +117,6 @@
</dependencies>
</configuration>
</plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.7.2</version>
- <executions>
- <execution>
- <phase>test</phase>
- <configuration>
- <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
- </configuration>
- <goals>
- <goal>test</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
</plugins>
</build>
<dependencies>

Back to the top