Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2007-09-19 14:55:00 +0000
committerJohn Arthorne2007-09-19 14:55:00 +0000
commitcda856167d6c6b35fa5005168b2b240ae725489f (patch)
tree639ca70795a4c90d450ed0788bc4f5f9bbd48a7c /bundles/org.eclipse.equinox.p2.installer/plugin.xml
parent13935cd4a6d16aab4f9af280bf590a55bf7458f9 (diff)
downloadrt.equinox.p2-cda856167d6c6b35fa5005168b2b240ae725489f.tar.gz
rt.equinox.p2-cda856167d6c6b35fa5005168b2b240ae725489f.tar.xz
rt.equinox.p2-cda856167d6c6b35fa5005168b2b240ae725489f.zip
Initial release of installer plugin
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.installer/plugin.xml')
-rw-r--r--bundles/org.eclipse.equinox.p2.installer/plugin.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.p2.installer/plugin.xml b/bundles/org.eclipse.equinox.p2.installer/plugin.xml
new file mode 100644
index 000000000..230bccece
--- /dev/null
+++ b/bundles/org.eclipse.equinox.p2.installer/plugin.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.2"?>
+<plugin>
+
+ <extension
+ id="application"
+ point="org.eclipse.core.runtime.applications">
+ <application>
+ <run
+ class="org.eclipse.equinox.p2.installer.InstallApplication">
+ </run>
+ </application>
+ </extension>
+ <extension
+ id="product"
+ point="org.eclipse.core.runtime.products">
+ <product
+ application="org.eclipse.equinox.p2.installer.application"
+ name="RCP Product">
+ <property
+ name="appName"
+ value="RCP Product">
+ </property>
+ <property
+ name="aboutImage"
+ value="product_lg.gif">
+ </property>
+ <property
+ name="aboutText"
+ value="Product Installer">
+ </property>
+ </product>
+ </extension>
+
+</plugin>

Back to the top