Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6fe9387cfe3d7fdbcf00623d925b0fb6c08114ed (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?xml version="1.0" encoding="UTF-8"?>
<component xmlns="http://eclipse.org/component"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://eclipse.org/component ../component.xsd "
   name="Eclipse Platform Team/CVS">
   
 <component-depends unrestricted="true"/>

 <plugin id="org.eclipse.team.core" />
 <plugin id="org.eclipse.team.ui" />
 <plugin id="org.eclipse.team.cvs.core" />
 <plugin id="org.eclipse.team.cvs.ui" />
 <plugin id="org.eclipse.team.cvs.ssh" />
 <plugin id="org.eclipse.team.cvs.ssh2" />

 <package name="org.eclipse.core.resources">
   <type name="IFileContentManager" implement="false" />
   <type name="IFileTypeInfo" implement="false" />
   <type name="IIgnoreInfo" implement="false" />
   <type name="IStringMapping" implement="false" />
   <type name="Team" instantiate="false" />
 </package>
 
 <package name="org.eclipse.team.core.subscribers">
   <type name="ISubscriberChangeEvent" implement="false" />
 </package>
 
 <package name="org.eclipse.team.core.synchronize">
 </package>
 
 <package name="org.eclipse.team.core.variants">
   <type name="IResourceVariantTree" implement="false" />
   <type name="PersistantResourceVariantByteStore" subclass="false" />
   <type name="SessionResourceVariantByteStore" subclass="false" />
 </package>
 
 <package name="org.eclipse.team.ui">
   <type name="TeamUI" subclass="false" instantiate="false" />
   <type name="TeamImages" subclass="false" instantiate="false" />
 </package>
 
 <package name="org.eclipse.team.ui.synchronize">
    <type name="ISynchronizeManager" implement="false" />
    <type name="ISynchronizePageConfiguration" implement="false" />
    <type name="ISynchronizePageSite" implement="false" />
    <type name="ISynchronizeParticipant" implement="false" />
    <type name="ISynchronizeParticipantDescriptor" implement="false" />
    <type name="ISynchronizeParticipantReference" implement="false" />
    <type name="ISynchronizeScope" implement="false" />
    <type name="ISynchronizeView" implement="false" />
    <type name="ResourceScope" subclass="false" />
    <type name="WorkingSetScope" subclass="false" />
    <type name="WorkspaceScope" subclass="false" />
 </package>

</component>

Back to the top