]> git.argeo.org Git - lgpl/argeo-commons.git/blob - plugin.xml
654141626a505cbb3fe7cf944e376d267565c9b1
[lgpl/argeo-commons.git] / plugin.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <?eclipse version="3.4"?>
3 <plugin>
4
5 <!-- We use the product to define some of the product preferences
6 see http://dev.eclipse.org/viewcvs/viewvc.cgi/platform-ui-home/rcp/faq.html?revision=1.6#customPrefs -->
7 <extension
8 id="org.argeo.security.ui.product"
9 point="org.eclipse.core.runtime.products">
10 <product
11 name="ArgeoProduct" application="org.argeo.security.ui.application.secureUi">
12 <property
13 name="appName"
14 value="Secure UI">
15 </property>
16 <property
17 name="preferenceCustomization"
18 value="plugin_customization.ini"/>
19 </product>
20 </extension>
21
22 <extension
23 id="org.argeo.security.webui.product"
24 point="org.eclipse.core.runtime.products">
25 <product
26 name="ArgeoProduct" application="org.argeo.security.ui.application.secureWebUi">
27 <property
28 name="appName"
29 value="Secure Web UI">
30 </property>
31 <property
32 name="preferenceCustomization"
33 value="plugin_customization.ini"/>
34 </product>
35 </extension>
36
37
38 <extension
39 id="secureUi"
40 name="Argeo Secure UI"
41 point="org.eclipse.core.runtime.applications">
42 <application cardinality="singleton-global"
43 thread="main"
44 visible="true">
45 <run
46 class="org.argeo.security.ui.application.SecureRcp">
47 </run>
48 </application>
49 </extension>
50 <extension
51 id="secureWebUi"
52 name="Argeo Secure Web UI"
53 point="org.eclipse.core.runtime.applications">
54 <application cardinality="singleton-global"
55 thread="main"
56 visible="true">
57 <run
58 class="org.argeo.security.ui.application.SecureRap">
59 </run>
60 </application>
61 </extension>
62
63 </plugin>