Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Pingel2013-05-21 07:19:07 +0000
committerSteffen Pingel2013-05-21 07:20:18 +0000
commit9eb24902c45397f92d9216dbc04b9d52df9a5f90 (patch)
tree46ab879297c662ebd7beeea4efee22ba0247c186
parentd68e47768e4c08f849157fe868e4662d1a88ebd2 (diff)
downloadorg.eclipse.mylyn-9eb24902c45397f92d9216dbc04b9d52df9a5f90.tar.gz
org.eclipse.mylyn-9eb24902c45397f92d9216dbc04b9d52df9a5f90.tar.xz
org.eclipse.mylyn-9eb24902c45397f92d9216dbc04b9d52df9a5f90.zip
408535: remove dependency on SDK from Tycho tests
Change-Id: I5d1e7e44f2cae972a0ec9a9952e86905621fd2ef Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=408535
-rw-r--r--org.eclipse.mylyn-parent/pom.xml16
-rw-r--r--org.eclipse.mylyn.maven-parent/pom.xml14
2 files changed, 0 insertions, 30 deletions
diff --git a/org.eclipse.mylyn-parent/pom.xml b/org.eclipse.mylyn-parent/pom.xml
index 099c3477..1d71fc6e 100644
--- a/org.eclipse.mylyn-parent/pom.xml
+++ b/org.eclipse.mylyn-parent/pom.xml
@@ -799,24 +799,8 @@
<useUIHarness>true</useUIHarness>
<failIfNoTests>true</failIfNoTests>
<forkedProcessTimeoutInSeconds>1800</forkedProcessTimeoutInSeconds>
- <product>org.eclipse.sdk.ide</product>
- <application>org.eclipse.ui.ide.workbench</application>
<argLine>${tycho.testArgLine} -Xmx512m -XX:MaxPermSize=256m -Djava.io.tmpdir=${project.build.directory} ${test.vmargs}</argLine>
<appArgLine>${test.args}</appArgLine>
- <!--
- <environmentVariables>
- <http_proxy>${http_proxy}</http_proxy>
- <https_proxy>${https_proxy}</https_proxy>
- </environmentVariables>
- -->
- <application>org.eclipse.ui.ide.workbench</application>
- <dependencies>
- <dependency>
- <type>p2-installable-unit</type>
- <artifactId>org.eclipse.sdk.feature.group</artifactId>
- <version>${platform-version}</version>
- </dependency>
- </dependencies>
</configuration>
</plugin>
</plugins>
diff --git a/org.eclipse.mylyn.maven-parent/pom.xml b/org.eclipse.mylyn.maven-parent/pom.xml
index d31b89e3..bc32e394 100644
--- a/org.eclipse.mylyn.maven-parent/pom.xml
+++ b/org.eclipse.mylyn.maven-parent/pom.xml
@@ -250,24 +250,10 @@
<version>${tycho-version}</version>
<configuration>
<skip>${test.skip}</skip>
- <useUIThread>true</useUIThread>
- <useUIHarness>true</useUIHarness>
<failIfNoTests>true</failIfNoTests>
<forkedProcessTimeoutInSeconds>3600</forkedProcessTimeoutInSeconds>
- <excludes>
- <exclude>**/Test*java</exclude>
- </excludes>
<argLine>${tycho.testArgLine} -Xmx512m -XX:MaxPermSize=256m -Djava.io.tmpdir=${project.build.directory} ${test.vmargs}</argLine>
<appArgLine>${test.args}</appArgLine>
- <application>org.eclipse.ui.ide.workbench</application>
- <!-- <product>org.eclipse.sdk.ide</product> -->
- <dependencies>
- <dependency>
- <type>p2-installable-unit</type>
- <artifactId>org.eclipse.sdk.feature.group</artifactId>
- <version>0.0.0</version>
- </dependency>
- </dependencies>
</configuration>
</plugin>
</plugins>

Back to the top