File: _plugin.xml

package info (click to toggle)
bnd 5.0.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 44,128 kB
  • sloc: java: 249,039; xml: 90,728; sh: 655; perl: 153; makefile: 96; python: 47; javascript: 9
file content (49 lines) | stat: -rw-r--r-- 1,794 bytes parent folder | download | duplicates (2)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.5"?>
<plugin>

   <extension
         point="org.eclipse.pde.ui.targetLocationProvisioners">
      <locationProvider
            class="bndtools.pde.target.RepositoryTargetLocationWizard"
            icon="platform:/plugin/bndtools.core/icons/database.png"
            id="bndtools.RepositoryTargetLocationProvisioner"
            name="Repository">
         <description>
            Download plug-ins from a repository defined in a Bnd workspace
         </description>
      </locationProvider>
   </extension>
   <extension
         point="org.eclipse.pde.core.targetLocations"
         id="bndtools.pde.target.repository.location"
         name="Bnd Repository Location">
      <targetLocation
            locationFactory="bndtools.pde.target.RepositoryTargetLocation$Factory"
            type="BndRepositoryLocation">
      </targetLocation>
   </extension>

   <extension
         point="org.eclipse.pde.ui.targetLocationProvisioners">
      <locationProvider
            class="bndtools.pde.target.RunDescriptorTargetLocationWizard"
            icon="platform:/plugin/bndtools.core/icons/bndrun.gif"
            id="bndtools.RunDescriptorTargetLocationProvisioner"
            name="Run Descriptor">
         <description>
            The set of bundles defined by a Bnd run descriptor
         </description>
      </locationProvider>
   </extension>
   <extension
         point="org.eclipse.pde.core.targetLocations"
         id="bndtools.pde.target.rundescriptor.location"
         name="Bnd Run Descriptor Location">
      <targetLocation
            locationFactory="bndtools.pde.target.RunDescriptorTargetLocation$Factory"
            type="BndRunDescriptorLocation">
      </targetLocation>
   </extension>

</plugin>