Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Schindl2013-06-25 21:31:17 +0000
committerTom Schindl2013-06-25 21:31:17 +0000
commitdf125496885fa6fa7960ffd3b9cb525b490110eb (patch)
tree2cfcec6eb103952b2dd10f94277681db327d2f30 /releng/runtime/org.eclipse.fx.target.rcp.feature
parent54cb5613d7f0473b9e256f56ba792d77aec6cf32 (diff)
downloadorg.eclipse.efxclipse-df125496885fa6fa7960ffd3b9cb525b490110eb.tar.gz
org.eclipse.efxclipse-df125496885fa6fa7960ffd3b9cb525b490110eb.tar.xz
org.eclipse.efxclipse-df125496885fa6fa7960ffd3b9cb525b490110eb.zip
adding feature for rcp developers
Diffstat (limited to 'releng/runtime/org.eclipse.fx.target.rcp.feature')
-rw-r--r--releng/runtime/org.eclipse.fx.target.rcp.feature/.project17
-rw-r--r--releng/runtime/org.eclipse.fx.target.rcp.feature/build.properties1
-rw-r--r--releng/runtime/org.eclipse.fx.target.rcp.feature/feature.xml31
-rw-r--r--releng/runtime/org.eclipse.fx.target.rcp.feature/pom.xml16
4 files changed, 65 insertions, 0 deletions
diff --git a/releng/runtime/org.eclipse.fx.target.rcp.feature/.project b/releng/runtime/org.eclipse.fx.target.rcp.feature/.project
new file mode 100644
index 000000000..90371ce51
--- /dev/null
+++ b/releng/runtime/org.eclipse.fx.target.rcp.feature/.project
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.fx.target.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/releng/runtime/org.eclipse.fx.target.rcp.feature/build.properties b/releng/runtime/org.eclipse.fx.target.rcp.feature/build.properties
new file mode 100644
index 000000000..64f93a9f0
--- /dev/null
+++ b/releng/runtime/org.eclipse.fx.target.rcp.feature/build.properties
@@ -0,0 +1 @@
+bin.includes = feature.xml
diff --git a/releng/runtime/org.eclipse.fx.target.rcp.feature/feature.xml b/releng/runtime/org.eclipse.fx.target.rcp.feature/feature.xml
new file mode 100644
index 000000000..0d69a57cd
--- /dev/null
+++ b/releng/runtime/org.eclipse.fx.target.rcp.feature/feature.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.eclipse.fx.target.rcp.feature"
+ label="Feature"
+ version="0.8.1.qualifier"
+ provider-name="BestSolution.at">
+
+ <description url="http://www.example.com/description">
+ [Enter Feature Description here.]
+ </description>
+
+ <copyright url="http://www.example.com/copyright">
+ [Enter Copyright Description here.]
+ </copyright>
+
+ <license url="http://www.example.com/license">
+ [Enter License Description here.]
+ </license>
+
+ <includes
+ id="org.eclipse.fx.core.feature"
+ version="0.0.0"/>
+
+ <plugin
+ id="org.eclipse.fx.ui.workbench3"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
diff --git a/releng/runtime/org.eclipse.fx.target.rcp.feature/pom.xml b/releng/runtime/org.eclipse.fx.target.rcp.feature/pom.xml
new file mode 100644
index 000000000..25ad9a3dd
--- /dev/null
+++ b/releng/runtime/org.eclipse.fx.target.rcp.feature/pom.xml
@@ -0,0 +1,16 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <name>e(fx)clipse - Runtime - Features - RCP Target</name>
+ <groupId>org.eclipse.fx.runtime</groupId>
+ <artifactId>org.eclipse.fx.target.feature</artifactId>
+ <packaging>eclipse-feature</packaging>
+
+ <parent>
+ <groupId>org.eclipse.fx</groupId>
+ <artifactId>releng</artifactId>
+ <relativePath>../../org.eclipse.fx.releng/pom.xml</relativePath>
+ <version>0.8.1-SNAPSHOT</version>
+ </parent>
+
+</project> \ No newline at end of file

Back to the top