Skip to main content
summaryrefslogtreecommitdiffstats
blob: a920de7daca4b31a4f815322031819fc121fab40 (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>

<plugin
   id="org.eclipse.compare.examples"
   name="%pluginName"
   version="3.0.0"
   provider-name="%providerName">

   <runtime>
      <library name="compareexamples.jar">
         <export name="*"/>
      </library>
   </runtime>
   
   <requires>
      <import plugin="org.eclipse.ui"/>
      <import plugin="org.eclipse.core.resources"/>
      <import plugin="org.eclipse.compare"/>
      <import plugin="org.eclipse.jface.text"/>
   </requires>

   <extension
         point="org.eclipse.compare.contentMergeViewers">
      <viewer
            extensions="kvtxt"
            class="org.eclipse.compare.examples.structurecreator.TextMergeViewerCreator">
      </viewer>
   </extension>
   
   <extension
         point="org.eclipse.compare.structureCreators">
      <structureCreator
            extensions="kv"
            class="org.eclipse.compare.examples.structurecreator.KeyValuePairStructureCreator">
      </structureCreator>
   </extension>

</plugin>

Back to the top