Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff McAffer2011-03-15 16:54:44 +0000
committerJeff McAffer2011-03-15 16:54:44 +0000
commit32ed2dfd07a2ad46eb9dae0e0b7d21d3d1b92273 (patch)
treeecddc2d3286d1d686a8f675748473451579d19de /features
parent6dbc8ce52f0066479f961e2742f35b781020a92c (diff)
downloadrt.equinox.p2-32ed2dfd07a2ad46eb9dae0e0b7d21d3d1b92273.tar.gz
rt.equinox.p2-32ed2dfd07a2ad46eb9dae0e0b7d21d3d1b92273.tar.xz
rt.equinox.p2-32ed2dfd07a2ad46eb9dae0e0b7d21d3d1b92273.zip
*** empty log message ***
Diffstat (limited to 'features')
-rw-r--r--features/org.eclipse.equinox.p2.rcp.feature/.project17
-rw-r--r--features/org.eclipse.equinox.p2.rcp.feature/build.properties2
-rw-r--r--features/org.eclipse.equinox.p2.rcp.feature/feature.properties33
-rw-r--r--features/org.eclipse.equinox.p2.rcp.feature/feature.xml61
4 files changed, 113 insertions, 0 deletions
diff --git a/features/org.eclipse.equinox.p2.rcp.feature/.project b/features/org.eclipse.equinox.p2.rcp.feature/.project
new file mode 100644
index 000000000..e46a3befc
--- /dev/null
+++ b/features/org.eclipse.equinox.p2.rcp.feature/.project
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.equinox.p2.rcp.feature</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.FeatureBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.FeatureNature</nature>
+ </natures>
+</projectDescription>
diff --git a/features/org.eclipse.equinox.p2.rcp.feature/build.properties b/features/org.eclipse.equinox.p2.rcp.feature/build.properties
new file mode 100644
index 000000000..b3a611b5c
--- /dev/null
+++ b/features/org.eclipse.equinox.p2.rcp.feature/build.properties
@@ -0,0 +1,2 @@
+bin.includes = feature.xml,\
+ feature.properties
diff --git a/features/org.eclipse.equinox.p2.rcp.feature/feature.properties b/features/org.eclipse.equinox.p2.rcp.feature/feature.properties
new file mode 100644
index 000000000..1c790244d
--- /dev/null
+++ b/features/org.eclipse.equinox.p2.rcp.feature/feature.properties
@@ -0,0 +1,33 @@
+###############################################################################
+# Copyright (c) 2011 EclipseSource Inc. 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:
+# EclipseSource - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Equinox p2 RCP Management Facilities
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse Equinox Project
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2011 EclipseSource Inc. and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+ EclipseSource - initial API and implementation\n
+################ end of copyright property ####################################
diff --git a/features/org.eclipse.equinox.p2.rcp.feature/feature.xml b/features/org.eclipse.equinox.p2.rcp.feature/feature.xml
new file mode 100644
index 000000000..b2907bc97
--- /dev/null
+++ b/features/org.eclipse.equinox.p2.rcp.feature/feature.xml
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.eclipse.equinox.p2.rcp.feature"
+ label="%featureName"
+ version="1.0.0.qualifier"
+ provider-name="%providerName"
+ license-feature="org.eclipse.license"
+ license-feature-version="1.0.0.qualifier">
+
+ <description url="%descriptionURL">
+ %description
+ </description>
+
+ <copyright url="%copyrightURL">
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <includes
+ id="org.eclipse.equinox.p2.core.feature"
+ version="0.0.0"/>
+
+ <plugin
+ id="org.eclipse.equinox.p2.ui"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.eclipse.equinox.p2.ui.sdk.scheduler"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.eclipse.equinox.p2.updatechecker"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.eclipse.equinox.security.ui"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.eclipse.equinox.p2.ui.rcp"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>

Back to the top