This repository has been archived on 2025-12-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
tcommon-studio-se/main/plugins/org.talend.updates.runtime/plugin.xml
GGu 12107f3e04 feat(TUP-16755/cf): merge the feature from dev branch into master (#924)
* feat(TUP-17320/cf): add API to check component zip file for updatesite

* feat(TUP-17355/cf): enable to load components from project

* feat(TUP-17322/cf): install m2 repository from new component updatesite

* feat(TUP-17392/cf): install the new components from "patches" folder

#time 3h

* test(TUP-17392/cf): add junits for LocalComponentsInstallComponent

#time 2h

* feat(TUP-17393/cf): install new components from additional package

* test(TUP-17393/cf): add junits for component install factory

* feat(TUP-17393/cf): hide in addtional package temp
2017-04-07 12:05:51 +08:00

66 lines
2.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension-point id="extraUpdatesFactory" name="ExtraUpdatesFactory" schema="schema/extraUpdatesFactory.exsd"/>
<extension
point="org.eclipse.ui.startup">
<startup
class="org.talend.updates.runtime.WorkbenchStartup">
</startup>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
id="org.talend.updates.show.wizard.command"
name="%talend.additional.package.menu">
</command>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
class="org.talend.updates.runtime.ui.ShowWizardHandler"
commandId="org.talend.updates.show.wizard.command">
</handler>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="menu:help?after=talend">
<command
commandId="org.talend.updates.show.wizard.command"
id="org.talend.updates.menus.show.wizard.command"
>
</command>
</menuContribution>
</extension>
<extension
point="org.talend.updates.runtime.extraUpdatesFactory">
<factory
class="org.talend.updates.runtime.engine.factory.PluginRequiredMissingJarsExtraUpdatesFactory"
id="org.talend.updates.PluginRequiredMissingJars"
name="Plugin Required Missing Jars">
</factory>
<factory
class="org.talend.updates.runtime.engine.factory.PluginOptionalMissingJarsExtraUpdatesFactory"
id="org.talend.updates.PluginOptionalMissingJars"
name="Plugin Optional Missing Jars">
</factory>
<factory
class="org.talend.updates.runtime.engine.factory.TOSDynamicExtraFeaturesFactory"
id="org.talend.updates.TOSDynamicExtraFeaturesFactory"
name="TOS Dynamic ExtraFeatures Factory">
</factory>
<!--
<factory
class="org.talend.updates.runtime.engine.factory.NewComponentsInstallFactory"
id="org.talend.updates.NewComponentsInstallFactory"
name="Install new components ">
</factory>
-->
</extension>
</plugin>