Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Rosenberg2010-05-29 22:40:07 +0000
committerRobin Rosenberg2010-05-29 22:40:07 +0000
commitbe831ab3e4cb891a66275af43f847881ad141509 (patch)
tree1a2191bb399866ea8370f298c95f956c6dc84544 /org.eclipse.egit.ui.test/pom.xml
parent17a39091e77b09d99f8cdfccb6e03dee613db177 (diff)
downloadegit-be831ab3e4cb891a66275af43f847881ad141509.tar.gz
egit-be831ab3e4cb891a66275af43f847881ad141509.tar.xz
egit-be831ab3e4cb891a66275af43f847881ad141509.zip
Fix failing SharingWizardTest.shareProjectWithNewlyCreatedRepo
This test failed when run from maven because the page where the team provider selection would occur was short circuited by Eclipse, since only one provider exists. We could skip that part and the test would run in maven, but not using the default options from Eclipse, or as this patch does, add another team provider, e.g. CVS to the running test. Bug: 314571 Change-Id: Ia88953e6d4d4160aede97b5f0c76c9cccc08a839 Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
Diffstat (limited to 'org.eclipse.egit.ui.test/pom.xml')
-rw-r--r--org.eclipse.egit.ui.test/pom.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/org.eclipse.egit.ui.test/pom.xml b/org.eclipse.egit.ui.test/pom.xml
index 38f803536b..dd6f8f59a4 100644
--- a/org.eclipse.egit.ui.test/pom.xml
+++ b/org.eclipse.egit.ui.test/pom.xml
@@ -62,6 +62,11 @@
</dependency>
<dependency>
<type>p2-installable-unit</type>
+ <artifactId>org.eclipse.cvs.feature.group</artifactId>
+ <version>[1.1.2,2.0.0)</version>
+ </dependency>
+ <dependency>
+ <type>p2-installable-unit</type>
<artifactId>org.eclipse.jgit.feature.group</artifactId>
<version>[0.8.0,0.9.0)</version>
</dependency>

Back to the top