Skip to main content
summaryrefslogtreecommitdiffstats
blob: b2deffde7fd9b4d434f8070feea0e7ce7d9ef3c7 (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         id="OTEMasterServerProduct"
         name="OTE Master Server Product"
         point="org.eclipse.core.runtime.products">
      <product
            application="org.eclipse.osee.ote.master.app"
            description="OTE Master Server"
            name="OteMasterProduct">
         <property
               name="appName"
               value="OteMasterProduct">
         </property>
        
      </product>
   </extension>
   <extension
         id="org.eclipse.osee.ote.master.app"
         name="OTE Master Server"
         point="org.eclipse.core.runtime.applications">
      <application
            cardinality="singleton-global"
            thread="main"
            visible="true">
         <run
               class="org.eclipse.osee.ote.master.rest.internal.OTEMasterApplication">
         </run>
      </application>
   </extension>

</plugin>

Back to the top