2
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
2 |
<?eclipse version="3.2"?>
|
|
3 |
<plugin>
|
|
4 |
<extension-point id="projectUpdater" name="Project Updater" schema="schema/projectUpdater.exsd"/>
|
|
5 |
<extension-point id="updateTrigger" name="Update Trigger" schema="schema/updateTrigger.exsd"/>
|
|
6 |
<extension-point id="updateProjectsScanner" name="Update Projects Scanner" schema="schema/updateProjectsScanner.exsd"/>
|
|
7 |
<extension-point id="refactoringUpdater" name="Refactoring Updater" schema="schema/refactoringUpdater.exsd"/>
|
|
8 |
|
|
9 |
<extension
|
|
10 |
point="org.eclipse.ui.actionSets">
|
|
11 |
<actionSet
|
|
12 |
label="Updater Actions"
|
|
13 |
visible="true"
|
|
14 |
id="com.nokia.carbide.updater.actionSet">
|
|
15 |
<action
|
|
16 |
class="com.nokia.carbide.internal.updater.UpdateAction"
|
|
17 |
icon="icons/Update_Project.png"
|
|
18 |
id="com.nokia.carbide.updater.update"
|
|
19 |
label="%UpdateProjects.label"
|
|
20 |
menubarPath="project/updaterGroup">
|
|
21 |
</action>
|
|
22 |
</actionSet>
|
|
23 |
</extension>
|
|
24 |
<extension
|
|
25 |
point="org.eclipse.ui.startup">
|
|
26 |
<startup class="com.nokia.carbide.internal.updater.Startup"/>
|
|
27 |
</extension>
|
|
28 |
|
|
29 |
</plugin>
|