Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--packages/org.eclipse.epp.package.java/plugin.xml22
1 files changed, 20 insertions, 2 deletions
diff --git a/packages/org.eclipse.epp.package.java/plugin.xml b/packages/org.eclipse.epp.package.java/plugin.xml
index 9171fe85..aa468213 100644
--- a/packages/org.eclipse.epp.package.java/plugin.xml
+++ b/packages/org.eclipse.epp.package.java/plugin.xml
@@ -26,13 +26,31 @@
</property>
<property
name="aboutText"
- value="Eclipse IDE for Java Developers&#x0A;&#x0A;Build id: {0}&#x0A;&#x0A;(c) Copyright Eclipse contributors and others 2000, 2009. All rights reserved.&#x0A;Visit http://eclipse.org/&#x0A;&#x0A;This product includes software developed by the&#x0A;Apache Software Foundation http://apache.org/">
+ value="Eclipse IDE for Java Developers&#x0A;&#x0A;Build id: {0}&#x0A;(c) Copyright Eclipse contributors and others 2000, 2009. All rights reserved.&#x0A;Visit http://eclipse.org/&#x0A;&#x0A;This product includes software developed by the&#x0A;Apache Software Foundation http://apache.org/">
</property>
<property
name="windowImages"
value="eclipse.png,eclipse32.png,eclipse48.png">
</property>
+ <property
+ name="introBrandingImage"
+ value="product:intro-eclipse.png"/>
+ <property
+ name="introTitle"
+ value="Welcome to the Eclipse IDE for Java Developers">
+ </property>
+ <property
+ name="introBrandingImageText"
+ value="Eclipse Project">
+ </property>
</product>
</extension>
-
+ <extension
+ point="org.eclipse.ui.intro">
+ <introProductBinding
+ introId="org.eclipse.ui.intro.universal"
+ productId="org.eclipse.epp.package.java.product">
+ </introProductBinding>
+ </extension>
</plugin>
+

Back to the top