Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2014-11-24 23:54:52 +0000
committerMatthias Sohn2014-11-26 10:40:06 +0000
commit33e416cc44d50988609a4e01ca056477ebe3d9bf (patch)
treeec876b17044487e3e93e6483067fa388961388ee /org.eclipse.egit.ui.test/pom.xml
parentfc04d4076547b80b233b3527b45f34a387686a6b (diff)
downloadegit-33e416cc44d50988609a4e01ca056477ebe3d9bf.tar.gz
egit-33e416cc44d50988609a4e01ca056477ebe3d9bf.tar.xz
egit-33e416cc44d50988609a4e01ca056477ebe3d9bf.zip
Update Tycho to 0.21
Change-Id: I2232142ee84a4fa75bab08fe3b5fac7a6b66e823 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.egit.ui.test/pom.xml')
-rw-r--r--org.eclipse.egit.ui.test/pom.xml69
1 files changed, 36 insertions, 33 deletions
diff --git a/org.eclipse.egit.ui.test/pom.xml b/org.eclipse.egit.ui.test/pom.xml
index dbdba1c58d..2bf2348537 100644
--- a/org.eclipse.egit.ui.test/pom.xml
+++ b/org.eclipse.egit.ui.test/pom.xml
@@ -70,50 +70,53 @@
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
- <artifactId>tycho-surefire-plugin</artifactId>
+ <artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
- <includes>
- <include>**/*Test.java</include>
- </includes>
- <useUIHarness>true</useUIHarness>
- <useUIThread>false</useUIThread>
- <product>org.eclipse.sdk.ide</product>
- <argLine>${ui.test.vmargs}</argLine>
- <application>org.eclipse.ui.ide.workbench</application>
<dependency-resolution>
<extraRequirements>
<requirement>
<type>eclipse-feature</type>
+ <id>org.eclipse.jgit</id>
+ <versionRange>0.0.0</versionRange>
+ </requirement>
+ <requirement>
+ <type>eclipse-feature</type>
<id>org.eclipse.jgit.java7</id>
<versionRange>0.0.0</versionRange>
</requirement>
+ <requirement>
+ <type>eclipse-feature</type>
+ <id>org.eclipse.egit</id>
+ <versionRange>0.0.0</versionRange>
+ </requirement>
+ <requirement>
+ <type>eclipse-feature</type>
+ <id>org.eclipse.pde</id>
+ <versionRange>${platform-version}</versionRange>
+ </requirement>
+ <requirement>
+ <type>eclipse-feature</type>
+ <id>org.eclipse.cvs</id>
+ <versionRange>[1.1.2,2.0.0)</versionRange>
+ </requirement>
</extraRequirements>
</dependency-resolution>
- <dependencies>
- <dependency>
- <type>p2-installable-unit</type>
- <groupId>org.eclipse.egit.feature</groupId>
- <artifactId>org.eclipse.egit.feature.group</artifactId>
- <version>3.6.0</version>
- </dependency>
- <dependency>
- <type>p2-installable-unit</type>
- <groupId>org.eclipse.jgit.feature</groupId>
- <artifactId>org.eclipse.jgit.feature.group</artifactId>
- <version>3.6.0</version>
- </dependency>
- <dependency>
- <type>p2-installable-unit</type>
- <artifactId>org.eclipse.pde.feature.group</artifactId>
- <version>${platform-version}</version>
- </dependency>
- <dependency>
- <type>p2-installable-unit</type>
- <artifactId>org.eclipse.cvs.feature.group</artifactId>
- <version>[1.1.2,2.0.0)</version>
- </dependency>
- </dependencies>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <version>${tycho-version}</version>
+ <configuration>
+ <includes>
+ <include>**/*Test.java</include>
+ </includes>
+ <useUIHarness>true</useUIHarness>
+ <useUIThread>false</useUIThread>
+ <product>org.eclipse.sdk.ide</product>
+ <argLine>${ui.test.vmargs}</argLine>
+ <application>org.eclipse.ui.ide.workbench</application>
</configuration>
</plugin>
</plugins>

Back to the top