Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2011-02-07 16:52:49 +0000
committerTomasz Zarna2011-02-07 16:52:49 +0000
commit1d90145e4d497190850b3a257132c9931f2775fc (patch)
treeca098b25bd7e06fb7e82acb3fb3e0494a0fb83b9 /bundles/org.eclipse.team.core/plugin.xml
parent3f5f2cdc2af9419620a2e0d51e30de2d0ae550cb (diff)
downloadeclipse.platform.team-1d90145e4d497190850b3a257132c9931f2775fc.tar.gz
eclipse.platform.team-1d90145e4d497190850b3a257132c9931f2775fc.tar.xz
eclipse.platform.team-1d90145e4d497190850b3a257132c9931f2775fc.zip
bug 330490: API and UI to configure SCM URLs for import -- Fix v03 from Ankur
Diffstat (limited to 'bundles/org.eclipse.team.core/plugin.xml')
-rw-r--r--bundles/org.eclipse.team.core/plugin.xml11
1 files changed, 9 insertions, 2 deletions
diff --git a/bundles/org.eclipse.team.core/plugin.xml b/bundles/org.eclipse.team.core/plugin.xml
index 19c19023e..1d58b6d45 100644
--- a/bundles/org.eclipse.team.core/plugin.xml
+++ b/bundles/org.eclipse.team.core/plugin.xml
@@ -8,7 +8,7 @@
<extension-point id="repository" name="%Repository" schema="schema/repository.exsd"/>
<extension-point id="defaultFileModificationValidator" name="%DefaultValidator" schema="schema/defaultFileModificationValidator.exsd"/>
<extension-point id="storageMergers" name="%StorageMergers" schema="schema/storageMergers.exsd"/>
-
+ <extension-point id="bundleImporters" name="%expoint.bundleImporters.name" schema="schema/bundleImporters.exsd"/>
<!-- Define common known file types -->
<extension
point="org.eclipse.team.core.fileTypes">
@@ -158,5 +158,12 @@
<adapter type="org.eclipse.core.resources.mapping.ResourceMapping"/>
</factory>
</extension>
-
+ <extension
+ point="org.eclipse.team.core.bundleImporters">
+ <importer
+ class="org.eclipse.team.internal.core.importing.CvsBundleImporterDelegate"
+ name="%bundleImporter.cvs"
+ id="org.eclipse.team.core.cvs.importer">
+ </importer>
+ </extension>
</plugin>

Back to the top