Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--features/org.eclipse.osee.core.plugin.feature/.project17
-rw-r--r--features/org.eclipse.osee.core.plugin.feature/build.properties1
-rw-r--r--features/org.eclipse.osee.core.plugin.feature/feature.xml53
3 files changed, 71 insertions, 0 deletions
diff --git a/features/org.eclipse.osee.core.plugin.feature/.project b/features/org.eclipse.osee.core.plugin.feature/.project
new file mode 100644
index 00000000000..1337667943c
--- /dev/null
+++ b/features/org.eclipse.osee.core.plugin.feature/.project
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.osee.core.plugin.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.osee.core.plugin.feature/build.properties b/features/org.eclipse.osee.core.plugin.feature/build.properties
new file mode 100644
index 00000000000..82ab19c62d1
--- /dev/null
+++ b/features/org.eclipse.osee.core.plugin.feature/build.properties
@@ -0,0 +1 @@
+bin.includes = feature.xml
diff --git a/features/org.eclipse.osee.core.plugin.feature/feature.xml b/features/org.eclipse.osee.core.plugin.feature/feature.xml
new file mode 100644
index 00000000000..48df2c27e48
--- /dev/null
+++ b/features/org.eclipse.osee.core.plugin.feature/feature.xml
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.eclipse.osee.core.plugin.feature"
+ label="%featureName"
+ version="0.9.5.qualifier"
+ provider-name="%providerName">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <requires>
+ <import plugin="jms.libraries"/>
+ <import plugin="org.eclipse.osgi"/>
+ <import plugin="org.apache.commons.logging"/>
+ <import plugin="org.eclipse.core.runtime"/>
+ <import plugin="org.eclipse.osee.framework.core"/>
+ <import plugin="org.eclipse.osee.framework.jdk.core"/>
+ <import plugin="org.eclipse.osee.framework.logging"/>
+ <import plugin="net.jini"/>
+ <import plugin="org.eclipse.core.resources"/>
+ </requires>
+
+ <plugin
+ id="org.eclipse.osee.framework.messaging"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.eclipse.osee.framework.jini"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.eclipse.osee.framework.plugin.core"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>

Back to the top