diff options
author | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2010-03-23 16:59:14 +0000 |
---|---|---|
committer | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2010-03-23 16:59:14 +0000 |
commit | 9e3ccaeb444382abe38ffc5a14f2e62a95b6432c (patch) | |
tree | 5b14dbfc8c494e75a3af9026cafaaf8419c1ae9e /sandbox/rfeng/eclipse-workspace-feature | |
parent | 73fd85c3daabbd085621a85e926cd2c7159b3121 (diff) |
An eclipse plugin that can run in headless mode to configure the eclipse workspace using command line
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@926662 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/rfeng/eclipse-workspace-feature')
-rw-r--r-- | sandbox/rfeng/eclipse-workspace-feature/.project | 17 | ||||
-rw-r--r-- | sandbox/rfeng/eclipse-workspace-feature/build.properties | 1 | ||||
-rw-r--r-- | sandbox/rfeng/eclipse-workspace-feature/feature.xml | 27 |
3 files changed, 45 insertions, 0 deletions
diff --git a/sandbox/rfeng/eclipse-workspace-feature/.project b/sandbox/rfeng/eclipse-workspace-feature/.project new file mode 100644 index 0000000000..c74995953f --- /dev/null +++ b/sandbox/rfeng/eclipse-workspace-feature/.project @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>tuscany-eclipse-workspace-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/sandbox/rfeng/eclipse-workspace-feature/build.properties b/sandbox/rfeng/eclipse-workspace-feature/build.properties new file mode 100644 index 0000000000..64f93a9f0b --- /dev/null +++ b/sandbox/rfeng/eclipse-workspace-feature/build.properties @@ -0,0 +1 @@ +bin.includes = feature.xml diff --git a/sandbox/rfeng/eclipse-workspace-feature/feature.xml b/sandbox/rfeng/eclipse-workspace-feature/feature.xml new file mode 100644 index 0000000000..b9664685ea --- /dev/null +++ b/sandbox/rfeng/eclipse-workspace-feature/feature.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<feature + id="org.apache.tuscany.eclipse.workspace.feature" + label="org.apache.tuscany.eclipse.workspace.feature" + version="1.0.0" + provider-name="Apache Software Foundation"> + + <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> + + <plugin + id="org.apache.tuscany.eclipse.workspace" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + +</feature> |