Bug 174384 - Need to look at adding localization files to the server-side bundles
diff --git a/bundles/org.eclipse.equinox.http.jetty5/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.http.jetty5/META-INF/MANIFEST.MF
index b05e039..2bb38fb 100644
--- a/bundles/org.eclipse.equinox.http.jetty5/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.http.jetty5/META-INF/MANIFEST.MF
@@ -1,6 +1,8 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Jetty Http Service
+Bundle-Name: %bundleName
+Bundle-Vendor: %bundleProvider
+Bundle-Localization: plugin
Bundle-SymbolicName: org.eclipse.equinox.http.jetty;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.equinox.http.jetty.internal.Activator
diff --git a/bundles/org.eclipse.equinox.http.jetty5/OSGI-INF/metatype/config.xml b/bundles/org.eclipse.equinox.http.jetty5/OSGI-INF/metatype/config.xml
index 7d48fe6..3007baf 100644
--- a/bundles/org.eclipse.equinox.http.jetty5/OSGI-INF/metatype/config.xml
+++ b/bundles/org.eclipse.equinox.http.jetty5/OSGI-INF/metatype/config.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<MetaData xmlns="http://www.osgi.org/xmlns/metatype/v1.0.0">
- <OCD name="Http Server Configuration" id="server.config" description="Http Server Configuration">
+ <OCD name="%configurationName" id="server.config" description="%configurationDescription">
<AD id="http.enabled" type="Boolean" default="true"/>
<AD id="http.port" type="Integer" default="0"/>
<AD id="https.enabled" type="Boolean" default="false"/>
diff --git a/bundles/org.eclipse.equinox.http.jetty5/build.properties b/bundles/org.eclipse.equinox.http.jetty5/build.properties
index 30c35d7..8a5a35f 100644
--- a/bundles/org.eclipse.equinox.http.jetty5/build.properties
+++ b/bundles/org.eclipse.equinox.http.jetty5/build.properties
@@ -3,5 +3,6 @@
bin.includes = META-INF/,\
.,\
OSGI-INF/,\
- about.html
+ about.html,\
+ plugin.properties
src.includes = about.html
diff --git a/bundles/org.eclipse.equinox.http.jetty5/plugin.properties b/bundles/org.eclipse.equinox.http.jetty5/plugin.properties
new file mode 100644
index 0000000..e2ce6f0
--- /dev/null
+++ b/bundles/org.eclipse.equinox.http.jetty5/plugin.properties
@@ -0,0 +1,14 @@
+###############################################################################
+# Copyright (c) 2005 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+bundleName = Jetty Http Service
+providerName = Eclipse.org
+configurationName = Http Server Configuration
+configurationDescription = Provides Http Server Configuration Parameters
\ No newline at end of file
diff --git a/bundles/org.eclipse.equinox.http.jetty6/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.http.jetty6/META-INF/MANIFEST.MF
index b05e039..2bb38fb 100644
--- a/bundles/org.eclipse.equinox.http.jetty6/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.http.jetty6/META-INF/MANIFEST.MF
@@ -1,6 +1,8 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Jetty Http Service
+Bundle-Name: %bundleName
+Bundle-Vendor: %bundleProvider
+Bundle-Localization: plugin
Bundle-SymbolicName: org.eclipse.equinox.http.jetty;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.equinox.http.jetty.internal.Activator
diff --git a/bundles/org.eclipse.equinox.http.jetty6/OSGI-INF/metatype/config.xml b/bundles/org.eclipse.equinox.http.jetty6/OSGI-INF/metatype/config.xml
index 7d48fe6..3007baf 100644
--- a/bundles/org.eclipse.equinox.http.jetty6/OSGI-INF/metatype/config.xml
+++ b/bundles/org.eclipse.equinox.http.jetty6/OSGI-INF/metatype/config.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<MetaData xmlns="http://www.osgi.org/xmlns/metatype/v1.0.0">
- <OCD name="Http Server Configuration" id="server.config" description="Http Server Configuration">
+ <OCD name="%configurationName" id="server.config" description="%configurationDescription">
<AD id="http.enabled" type="Boolean" default="true"/>
<AD id="http.port" type="Integer" default="0"/>
<AD id="https.enabled" type="Boolean" default="false"/>
diff --git a/bundles/org.eclipse.equinox.http.jetty6/build.properties b/bundles/org.eclipse.equinox.http.jetty6/build.properties
index 30c35d7..8a5a35f 100644
--- a/bundles/org.eclipse.equinox.http.jetty6/build.properties
+++ b/bundles/org.eclipse.equinox.http.jetty6/build.properties
@@ -3,5 +3,6 @@
bin.includes = META-INF/,\
.,\
OSGI-INF/,\
- about.html
+ about.html,\
+ plugin.properties
src.includes = about.html
diff --git a/bundles/org.eclipse.equinox.http.jetty6/plugin.properties b/bundles/org.eclipse.equinox.http.jetty6/plugin.properties
new file mode 100644
index 0000000..e2ce6f0
--- /dev/null
+++ b/bundles/org.eclipse.equinox.http.jetty6/plugin.properties
@@ -0,0 +1,14 @@
+###############################################################################
+# Copyright (c) 2005 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+bundleName = Jetty Http Service
+providerName = Eclipse.org
+configurationName = Http Server Configuration
+configurationDescription = Provides Http Server Configuration Parameters
\ No newline at end of file
diff --git a/bundles/org.eclipse.equinox.http.registry/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.http.registry/META-INF/MANIFEST.MF
index d6fee4a..3d33bba 100644
--- a/bundles/org.eclipse.equinox.http.registry/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.http.registry/META-INF/MANIFEST.MF
@@ -1,6 +1,6 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Http Service Registry Extensions
+Bundle-Name: %bundleName
Bundle-SymbolicName: org.eclipse.equinox.http.registry;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.equinox.http.registry.internal.Activator
@@ -17,3 +17,4 @@
CDC-1.0/Foundation-1.0,
J2SE-1.3
Export-Package: org.eclipse.equinox.http.registry
+Bundle-Vendor: %providerName
diff --git a/bundles/org.eclipse.equinox.http.registry/about.html b/bundles/org.eclipse.equinox.http.registry/about.html
new file mode 100644
index 0000000..d7e1cdf
--- /dev/null
+++ b/bundles/org.eclipse.equinox.http.registry/about.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
+<title>About</title>
+</head>
+<body lang="EN-US">
+<h2>About This Content</h2>
+
+<p>January 30, 2007</p>
+<h3>License</h3>
+
+<p>The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available
+at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+For purposes of the EPL, "Program" will mean the Content.</p>
+
+<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is
+being redistributed by another party ("Redistributor") and different terms and conditions may
+apply to your use of any object code in the Content. Check the Redistributor's license that was
+provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/bundles/org.eclipse.equinox.http.registry/build.properties b/bundles/org.eclipse.equinox.http.registry/build.properties
index 741edd4..1f9e1f7 100644
--- a/bundles/org.eclipse.equinox.http.registry/build.properties
+++ b/bundles/org.eclipse.equinox.http.registry/build.properties
@@ -2,5 +2,8 @@
output.. = bin/
bin.includes = META-INF/,\
.,\
- plugin.xml
-src.includes = schema/
+ plugin.xml,\
+ about.html,\
+ plugin.properties
+src.includes = schema/,\
+ about.html
diff --git a/bundles/org.eclipse.equinox.http.registry/plugin.properties b/bundles/org.eclipse.equinox.http.registry/plugin.properties
new file mode 100644
index 0000000..cad230c
--- /dev/null
+++ b/bundles/org.eclipse.equinox.http.registry/plugin.properties
@@ -0,0 +1,16 @@
+###############################################################################
+# Copyright (c) 2007 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+bundleName = Http Service Registry Extensions
+providerName = Eclipse.org
+servletsName = HttpService servlets
+resourcesName = HttpService resources
+httpcontextsName = HttpService httpcontexts
+
diff --git a/bundles/org.eclipse.equinox.http.registry/plugin.xml b/bundles/org.eclipse.equinox.http.registry/plugin.xml
index 8dedc5c..8d9cf90 100644
--- a/bundles/org.eclipse.equinox.http.registry/plugin.xml
+++ b/bundles/org.eclipse.equinox.http.registry/plugin.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
- <extension-point id="servlets" name="HttpService servlets" schema="schema/servlets.exsd"/>
- <extension-point id="resources" name="HttpService resources" schema="schema/resources.exsd"/>
- <extension-point id="httpcontexts" name="HttpService httpcontexts" schema="schema/httpcontexts.exsd"/>
+ <extension-point id="servlets" name="%servletsName" schema="schema/servlets.exsd"/>
+ <extension-point id="resources" name="%resourcesName" schema="schema/resources.exsd"/>
+ <extension-point id="httpcontexts" name="%httpcontextsName" schema="schema/httpcontexts.exsd"/>
</plugin>
diff --git a/bundles/org.eclipse.equinox.http.servlet/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.http.servlet/META-INF/MANIFEST.MF
index 30b234d..099068d 100644
--- a/bundles/org.eclipse.equinox.http.servlet/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.http.servlet/META-INF/MANIFEST.MF
@@ -1,6 +1,7 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Http Services Servlet
+Bundle-Name: %bundleName
+Bundle-Vendor: %bundleProvider
Bundle-SymbolicName: org.eclipse.equinox.http.servlet
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.equinox.http.servlet.internal.Activator
diff --git a/bundles/org.eclipse.equinox.http.servlet/build.properties b/bundles/org.eclipse.equinox.http.servlet/build.properties
index 9cbab3c..cdd2db7 100644
--- a/bundles/org.eclipse.equinox.http.servlet/build.properties
+++ b/bundles/org.eclipse.equinox.http.servlet/build.properties
@@ -2,5 +2,6 @@
output.. = bin/
bin.includes = META-INF/,\
.,\
- about.html
+ about.html,\
+ plugin.properties
src.includes = about.html
diff --git a/bundles/org.eclipse.equinox.http.servlet/plugin.properties b/bundles/org.eclipse.equinox.http.servlet/plugin.properties
new file mode 100644
index 0000000..28793a2
--- /dev/null
+++ b/bundles/org.eclipse.equinox.http.servlet/plugin.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2005 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+bundleName = Http Services Servlet
+providerName = Eclipse.org
diff --git a/bundles/org.eclipse.equinox.http.servletbridge/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.http.servletbridge/META-INF/MANIFEST.MF
index c1c014b..d33e2e9 100644
--- a/bundles/org.eclipse.equinox.http.servletbridge/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.http.servletbridge/META-INF/MANIFEST.MF
@@ -1,6 +1,7 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Servletbridge Http Service
+Bundle-Name: %bundleName
+Bundle-Vendor: %bundleProvider
Bundle-SymbolicName: org.eclipse.equinox.http.servletbridge
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.equinox.http.servletbridge.internal.Activator
diff --git a/bundles/org.eclipse.equinox.http.servletbridge/build.properties b/bundles/org.eclipse.equinox.http.servletbridge/build.properties
index 9cbab3c..cdd2db7 100644
--- a/bundles/org.eclipse.equinox.http.servletbridge/build.properties
+++ b/bundles/org.eclipse.equinox.http.servletbridge/build.properties
@@ -2,5 +2,6 @@
output.. = bin/
bin.includes = META-INF/,\
.,\
- about.html
+ about.html,\
+ plugin.properties
src.includes = about.html
diff --git a/bundles/org.eclipse.equinox.http.servletbridge/plugin.properties b/bundles/org.eclipse.equinox.http.servletbridge/plugin.properties
new file mode 100644
index 0000000..f87cf09
--- /dev/null
+++ b/bundles/org.eclipse.equinox.http.servletbridge/plugin.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2005 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+bundleName = Servletbridge Http Service
+providerName = Eclipse.org
diff --git a/bundles/org.eclipse.equinox.jsp.jasper.registry/.classpath b/bundles/org.eclipse.equinox.jsp.jasper.registry/.classpath
index 751c8f2..ce73933 100644
--- a/bundles/org.eclipse.equinox.jsp.jasper.registry/.classpath
+++ b/bundles/org.eclipse.equinox.jsp.jasper.registry/.classpath
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.4"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="output" path="bin"/>
</classpath>
diff --git a/bundles/org.eclipse.equinox.jsp.jasper.registry/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.jsp.jasper.registry/META-INF/MANIFEST.MF
index bf2428c..be06c8e 100644
--- a/bundles/org.eclipse.equinox.jsp.jasper.registry/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.jsp.jasper.registry/META-INF/MANIFEST.MF
@@ -1,6 +1,8 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Jasper Jsp Registry Support Plug-in
+Bundle-Name: %bundleName
+Bundle-Vendor: %bundleProvider
+Bundle-Localization: plugin
Bundle-SymbolicName: org.eclipse.equinox.jsp.jasper.registry
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.equinox.internal.jsp.jasper.registry.Activator
diff --git a/bundles/org.eclipse.equinox.jsp.jasper.registry/about.html b/bundles/org.eclipse.equinox.jsp.jasper.registry/about.html
new file mode 100644
index 0000000..d7e1cdf
--- /dev/null
+++ b/bundles/org.eclipse.equinox.jsp.jasper.registry/about.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
+<title>About</title>
+</head>
+<body lang="EN-US">
+<h2>About This Content</h2>
+
+<p>January 30, 2007</p>
+<h3>License</h3>
+
+<p>The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available
+at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+For purposes of the EPL, "Program" will mean the Content.</p>
+
+<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is
+being redistributed by another party ("Redistributor") and different terms and conditions may
+apply to your use of any object code in the Content. Check the Redistributor's license that was
+provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/bundles/org.eclipse.equinox.jsp.jasper.registry/build.properties b/bundles/org.eclipse.equinox.jsp.jasper.registry/build.properties
index 3af869a..17de001 100644
--- a/bundles/org.eclipse.equinox.jsp.jasper.registry/build.properties
+++ b/bundles/org.eclipse.equinox.jsp.jasper.registry/build.properties
@@ -1,5 +1,8 @@
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
- .
+ .,\
+ about.html,\
+ plugin.properties
+src.includes = about.html
diff --git a/bundles/org.eclipse.equinox.jsp.jasper.registry/plugin.properties b/bundles/org.eclipse.equinox.jsp.jasper.registry/plugin.properties
new file mode 100644
index 0000000..b2731c7
--- /dev/null
+++ b/bundles/org.eclipse.equinox.jsp.jasper.registry/plugin.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2005 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+bundleName = Jasper Jsp Registry Support Plug-in
+providerName = Eclipse.org
diff --git a/bundles/org.eclipse.equinox.jsp.jasper/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.jsp.jasper/META-INF/MANIFEST.MF
index f8020f2..7792770 100644
--- a/bundles/org.eclipse.equinox.jsp.jasper/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.jsp.jasper/META-INF/MANIFEST.MF
@@ -1,6 +1,8 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Jasper Jsp Support Bundle
+Bundle-Name: %bundleName
+Bundle-Vendor: %bundleProvider
+Bundle-Localization: plugin
Bundle-SymbolicName: org.eclipse.equinox.jsp.jasper
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.equinox.internal.jsp.jasper.Activator
diff --git a/bundles/org.eclipse.equinox.jsp.jasper/about.html b/bundles/org.eclipse.equinox.jsp.jasper/about.html
new file mode 100644
index 0000000..d7e1cdf
--- /dev/null
+++ b/bundles/org.eclipse.equinox.jsp.jasper/about.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
+<title>About</title>
+</head>
+<body lang="EN-US">
+<h2>About This Content</h2>
+
+<p>January 30, 2007</p>
+<h3>License</h3>
+
+<p>The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available
+at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+For purposes of the EPL, "Program" will mean the Content.</p>
+
+<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is
+being redistributed by another party ("Redistributor") and different terms and conditions may
+apply to your use of any object code in the Content. Check the Redistributor's license that was
+provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/bundles/org.eclipse.equinox.jsp.jasper/build.properties b/bundles/org.eclipse.equinox.jsp.jasper/build.properties
index 3af869a..16a1a6a 100644
--- a/bundles/org.eclipse.equinox.jsp.jasper/build.properties
+++ b/bundles/org.eclipse.equinox.jsp.jasper/build.properties
@@ -1,5 +1,8 @@
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
- .
+ .,\
+ plugin.properties,\
+ about.html
+src.includes = about.html
diff --git a/bundles/org.eclipse.equinox.jsp.jasper/plugin.properties b/bundles/org.eclipse.equinox.jsp.jasper/plugin.properties
new file mode 100644
index 0000000..6a5e9b3
--- /dev/null
+++ b/bundles/org.eclipse.equinox.jsp.jasper/plugin.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2005 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+bundleName = Jasper Jsp Support Bundle
+providerName = Eclipse.org