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

<product name="SampleProduct" uid="SampleProduct" version="1.0.0" useFeatures="false" includeLaunchers="true">

   <configIni use="">
   </configIni>

   <launcherArgs>
      <programArgs>-product &quot;com,ma&quot;
      </programArgs>
      <vmArgs>-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8272
      </vmArgs>
   </launcherArgs>

   <windowImages/>

   <launcher>
      <win useIco="false">
         <bmp
            winSmallLow="icon.bmp"/>
      </win>
   </launcher>

   <vm>
      <linux include="false">org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-9</linux>
      <windows include="false">org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/OSGi%Minimum-1.0</windows>
   </vm>

   <plugins>
      <plugin id="org.eclipse.core.commands" version="5.0.0"/>
   </plugins>

   <configurations>
      <plugin id="org.eclipse.core.commands" autoStart="false" startLevel="2" />
   </configurations>

</product>

Back to the top