Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Pingel2012-10-06 02:56:23 +0000
committerSteffen Pingel2013-09-26 19:45:58 +0000
commitb25ac21444f9250945fa89c2a9bb20cb8c8d67b6 (patch)
tree83ddfbc36c084485080e714b5f22838aa25edbbd /org.eclipse.mylyn.bugzilla.core/plugin.xml
parentd4245c3b3223e8fbae7927a5acc0cc8401690448 (diff)
downloadorg.eclipse.mylyn.tasks-b25ac21444f9250945fa89c2a9bb20cb8c8d67b6.tar.gz
org.eclipse.mylyn.tasks-b25ac21444f9250945fa89c2a9bb20cb8c8d67b6.tar.xz
org.eclipse.mylyn.tasks-b25ac21444f9250945fa89c2a9bb20cb8c8d67b6.zip
386117: [api] declare repository connector extensions in tasks.core
Change-Id: I9eafa88b5731e9aaf1d46bd0f91e1b3c51f4f129 Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=386117
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.core/plugin.xml')
-rw-r--r--org.eclipse.mylyn.bugzilla.core/plugin.xml28
1 files changed, 18 insertions, 10 deletions
diff --git a/org.eclipse.mylyn.bugzilla.core/plugin.xml b/org.eclipse.mylyn.bugzilla.core/plugin.xml
index 4e1d101ca..3f62193f6 100644
--- a/org.eclipse.mylyn.bugzilla.core/plugin.xml
+++ b/org.eclipse.mylyn.bugzilla.core/plugin.xml
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<?eclipse version="3.0"?><!--
+<?eclipse version="3.0"?>
+<!--
Copyright (c) 2009 Tasktop Technologies and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
@@ -9,15 +10,22 @@
Contributors:
Tasktop Technologies - initial API and implementation
-->
-
<plugin>
<extension-point id="languages" name="languages" schema="schema/languages.exsd"/>
-<!--<extension
- point="org.eclipse.mylyn.tasks.ui.duplicateDetectors">
- <detector
- class="org.eclipse.mylyn.internal.bugzilla.core.BugzillaStackTraceDuplicateDetector"
- kind="bugzilla"
- name="Stack Trace">
- </detector>
- </extension>-->
+
+ <extension
+ id="org.eclipse.mylyn.bugzilla.repository"
+ name="%bugzilla.repository.name"
+ point="org.eclipse.mylyn.tasks.core.repositories">
+
+ <connectorCore
+ id="bugzilla"
+ class="org.eclipse.mylyn.internal.bugzilla.core.BugzillaRepositoryConnector"
+ name="%BugzillaRepositoryConnector.name"/>
+
+ <taskListMigrator
+ class="org.eclipse.mylyn.internal.bugzilla.core.BugzillaTaskListMigrator"/>
+ <repositoryMigrator
+ class="org.eclipse.mylyn.internal.bugzilla.core.BugzillaRepositoryMigrator"/>
+ </extension>
</plugin>

Back to the top