core/com.nokia.carbide.updater/plugin.xml
author tzelaw
Tue, 14 Apr 2009 15:03:19 -0500
changeset 94 d74b720418db
parent 2 d760517a8095
permissions -rw-r--r--
Test framework support: Ask debugger to remember DebugTarget so test framework can use it to setup test framework related utility. With this we can use the DebugUI way of launching while keeping test framework functionality
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
cawthron
parents:
diff changeset
     1
<?xml version="1.0" encoding="UTF-8"?>
cawthron
parents:
diff changeset
     2
<?eclipse version="3.2"?>
cawthron
parents:
diff changeset
     3
<plugin>
cawthron
parents:
diff changeset
     4
   <extension-point id="projectUpdater" name="Project Updater" schema="schema/projectUpdater.exsd"/>
cawthron
parents:
diff changeset
     5
   <extension-point id="updateTrigger" name="Update Trigger" schema="schema/updateTrigger.exsd"/>
cawthron
parents:
diff changeset
     6
   <extension-point id="updateProjectsScanner" name="Update Projects Scanner" schema="schema/updateProjectsScanner.exsd"/>
cawthron
parents:
diff changeset
     7
   <extension-point id="refactoringUpdater" name="Refactoring Updater" schema="schema/refactoringUpdater.exsd"/>
cawthron
parents:
diff changeset
     8
cawthron
parents:
diff changeset
     9
   <extension
cawthron
parents:
diff changeset
    10
         point="org.eclipse.ui.actionSets">
cawthron
parents:
diff changeset
    11
      <actionSet
cawthron
parents:
diff changeset
    12
            label="Updater Actions"
cawthron
parents:
diff changeset
    13
            visible="true"
cawthron
parents:
diff changeset
    14
            id="com.nokia.carbide.updater.actionSet">
cawthron
parents:
diff changeset
    15
         <action
cawthron
parents:
diff changeset
    16
               class="com.nokia.carbide.internal.updater.UpdateAction"
cawthron
parents:
diff changeset
    17
               icon="icons/Update_Project.png"
cawthron
parents:
diff changeset
    18
               id="com.nokia.carbide.updater.update"
cawthron
parents:
diff changeset
    19
               label="%UpdateProjects.label"
cawthron
parents:
diff changeset
    20
               menubarPath="project/updaterGroup">
cawthron
parents:
diff changeset
    21
         </action>
cawthron
parents:
diff changeset
    22
	</actionSet>
cawthron
parents:
diff changeset
    23
    </extension>
cawthron
parents:
diff changeset
    24
    <extension
cawthron
parents:
diff changeset
    25
          point="org.eclipse.ui.startup">
cawthron
parents:
diff changeset
    26
       <startup class="com.nokia.carbide.internal.updater.Startup"/>
cawthron
parents:
diff changeset
    27
    </extension>
cawthron
parents:
diff changeset
    28
cawthron
parents:
diff changeset
    29
</plugin>