Skip to main content
summaryrefslogtreecommitdiffstats
blob: a43b8905ae1a37eb5856ab4dc6af0f906b042a7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>

<plugin
   id="org.eclipse.wst.command.env"
   name="%PLUGIN_NAME"
   version="1.0.0"
   provider-name="%PLUGIN_PROVIDER"
   class="org.eclipse.wst.command.internal.env.plugin.EnvPlugin">

   <runtime>
      <library name="env.jar">
         <export name="*"/>
      </library>
   </runtime>

   <requires>
      <import plugin="org.eclipse.wst.command.env.core"/>
      <import plugin="org.eclipse.core.runtime"/>
      <import plugin="org.eclipse.core.resources"/>
      <import plugin="org.eclipse.osgi"/>
   </requires>

   <extension-point
      id="dynamicWizard"
      name="%PLUGIN_XP_DYNAMIC_WIZARD"/>
   
   <extension-point
      id="actionDialogPreferenceType"
      name="%PLUGIN_XP_POPUP_DIALOGS"/>

</plugin>

Back to the top