Skip to main content
summaryrefslogtreecommitdiffstats
blob: 28f0df823f40dafc5d2bd9c42ef3928b4c72e8e2 (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
<?xml version="1.0" encoding="UTF-8"?>
<!-- File written by PDE 1.0 -->
<plugin
   id="org.eclipse.team.core"
   name="%pluginName"
   version="2.0.0"
   provider-name="Object Technology International, Inc."
   class="org.eclipse.team.core.TeamPlugin">
<requires>
   <import plugin="org.eclipse.core.resources"/>
   <import plugin="org.eclipse.core.runtime"/>
</requires>

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

<extension-point id="providers" name="Providers"/>
<extension-point id="fileTypes" name="File Types Registry"/>

<extension point="org.eclipse.core.resources.fileModificationValidator">
	<fileModificationValidator class="org.eclipse.team.core.internal.FileModificationValidator"/>
</extension>

</plugin>

Back to the top