Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2007-09-28 16:40:30 +0000
committerEike Stepper2007-09-28 16:40:30 +0000
commitd922689fb8c68844f75eb6d50e4452d2276eba7d (patch)
tree916c2519ffe8aec10ebdaa7f604324324abe726f /plugins/org.eclipse.emf.cdo.server/plugin.xml
parenteff36d37776993792c68e229fbb61b02b425b0ce (diff)
downloadcdo-d922689fb8c68844f75eb6d50e4452d2276eba7d.tar.gz
cdo-d922689fb8c68844f75eb6d50e4452d2276eba7d.tar.xz
cdo-d922689fb8c68844f75eb6d50e4452d2276eba7d.zip
[204887] Provide launch configs in the examples plugin
https://bugs.eclipse.org/bugs/show_bug.cgi?id=204887
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.server/plugin.xml')
-rw-r--r--plugins/org.eclipse.emf.cdo.server/plugin.xml16
1 files changed, 15 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo.server/plugin.xml b/plugins/org.eclipse.emf.cdo.server/plugin.xml
index df78c98e03..586ee9e272 100644
--- a/plugins/org.eclipse.emf.cdo.server/plugin.xml
+++ b/plugins/org.eclipse.emf.cdo.server/plugin.xml
@@ -39,10 +39,24 @@
<extension
point="org.eclipse.core.runtime.applications"
id="app"
- name="CDO Server">
+ name="%applicationName">
<application cardinality="1" thread="any">
<run class="org.eclipse.emf.cdo.internal.server.bundle.CDOServerApplication"/>
</application>
</extension>
+ <extension
+ point="org.eclipse.core.runtime.products">
+ id="server"
+ <product
+ name="%productName"
+ description="%productDescription"
+ application="org.eclipse.emf.cdo.server.app">
+ <property
+ name="appName"
+ value="%applicationName">
+ </property>
+ </product>
+ </extension>
+
</plugin>

Back to the top