Skip to content

Commit e7e5a03

Browse files
committed
1 parent 0edd6a1 commit e7e5a03

File tree

8 files changed

+145
-0
lines changed

8 files changed

+145
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>org.eclipse.help-feature</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.pde.FeatureBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.pde.FeatureNature</nature>
16+
</natures>
17+
</projectDescription>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
encoding/<project>=UTF-8
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
line.separator=\n
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
###############################################################################
2+
# Copyright (c) 2008, 2012 IBM Corporation and others.
3+
#
4+
# This program and the accompanying materials
5+
# are made available under the terms of the Eclipse Public License 2.0
6+
# which accompanies this distribution, and is available at
7+
# https://www.eclipse.org/legal/epl-2.0/
8+
#
9+
# SPDX-License-Identifier: EPL-2.0
10+
#
11+
#
12+
# Contributors:
13+
# IBM Corporation - initial API and implementation
14+
###############################################################################
15+
bin.includes = feature.xml,\
16+
feature.properties
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
###############################################################################
2+
# Copyright (c) 2008, 2013 IBM Corporation and others.
3+
#
4+
# This program and the accompanying materials
5+
# are made available under the terms of the Eclipse Public License 2.0
6+
# which accompanies this distribution, and is available at
7+
# https://www.eclipse.org/legal/epl-2.0/
8+
#
9+
# SPDX-License-Identifier: EPL-2.0
10+
#
11+
# Contributors:
12+
# IBM Corporation - initial API and implementation
13+
###############################################################################
14+
# feature.properties
15+
# contains externalized strings for feature.xml
16+
# "%foo" in feature.xml corresponds to the key "foo" in this file
17+
# java.io.Properties file (ISO 8859-1 with "\" escapes)
18+
# This file should be translated.
19+
20+
# "featureName" property - name of the feature
21+
featureName=Eclipse Help System
22+
23+
# "providerName" property - name of the company that provides the feature
24+
providerName=Eclipse.org
25+
26+
# "description" property - description of the feature
27+
description=Eclipse help system.
28+
29+
# "copyright" property - text of the "Feature Update Copyright"
30+
copyright=\
31+
Copyright (c) 2008, 2013 IBM Corporation and others.\n\
32+
33+
This program and the accompanying materials\n\
34+
are made available under the terms of the Eclipse Public License 2.0\n\
35+
which accompanies this distribution, and is available at\n\
36+
https://www.eclipse.org/legal/epl-2.0/
37+
38+
SPDX-License-Identifier: EPL-2.0\n\
39+
\n\
40+
Contributors:\n\
41+
IBM Corporation - initial API and implementation\n
42+
################ end of copyright property ####################################
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- NOTE: Usually we keep branding and feature bundle version in sync, but we can't increase the major version -->
3+
<feature
4+
id="org.eclipse.help"
5+
label="%featureName"
6+
version="2.3.2500.qualifier"
7+
provider-name="%providerName"
8+
plugin="org.eclipse.help.base"
9+
license-feature="org.eclipse.license"
10+
license-feature-version="0.0.0">
11+
12+
<description>
13+
%description
14+
</description>
15+
16+
<copyright>
17+
%copyright
18+
</copyright>
19+
20+
<license url="%licenseURL">
21+
%license
22+
</license>
23+
24+
<plugin
25+
id="org.eclipse.equinox.http.jetty"
26+
version="0.0.0"/>
27+
28+
<plugin
29+
id="org.eclipse.equinox.http.registry"
30+
version="0.0.0"/>
31+
32+
<plugin
33+
id="org.eclipse.equinox.http.servlet"
34+
version="0.0.0"/>
35+
36+
<plugin
37+
id="org.eclipse.equinox.jsp.jasper"
38+
version="0.0.0"/>
39+
40+
<plugin
41+
id="org.eclipse.equinox.jsp.jasper.registry"
42+
version="0.0.0"/>
43+
44+
<plugin
45+
id="org.eclipse.help.base"
46+
version="0.0.0"/>
47+
48+
<plugin
49+
id="org.eclipse.help.ui"
50+
version="0.0.0"/>
51+
52+
<plugin
53+
id="org.eclipse.help.webapp"
54+
version="0.0.0"/>
55+
56+
<plugin
57+
id="org.eclipse.core.net"
58+
version="0.0.0"/>
59+
60+
<plugin
61+
id="org.eclipse.equinox.security"
62+
version="0.0.0"/>
63+
64+
</feature>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# To force a version qualifier update add the bug here

ua/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
<module>org.eclipse.help.base</module>
2727
<module>org.eclipse.help.ui</module>
2828
<module>org.eclipse.help.webapp</module>
29+
<module>org.eclipse.help-feature</module>
2930
<module>org.eclipse.ua.tests</module>
3031
<module>org.eclipse.ua.tests.doc</module>
3132
<module>org.eclipse.ui.cheatsheets</module>

0 commit comments

Comments
 (0)