Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrescobar2011-09-22 23:25:56 +0000
committerRyan D. Brooks2011-09-22 23:25:56 +0000
commit0d60a11566a1414fe828ac56a1eba9ee52e41f6f (patch)
treedce2fbe6aeccd16678e96d2e60f30294ff4429fe /plugins/org.eclipse.osee.x.core.p2
parent3d54e65d643a8cfbbe644ddff10f7e1d659a3447 (diff)
downloadorg.eclipse.osee-0d60a11566a1414fe828ac56a1eba9ee52e41f6f.tar.gz
org.eclipse.osee-0d60a11566a1414fe828ac56a1eba9ee52e41f6f.tar.xz
org.eclipse.osee-0d60a11566a1414fe828ac56a1eba9ee52e41f6f.zip
feature[ats_Q9NLC]: Use maven for new server build
Diffstat (limited to 'plugins/org.eclipse.osee.x.core.p2')
-rw-r--r--plugins/org.eclipse.osee.x.core.p2/.project17
-rw-r--r--plugins/org.eclipse.osee.x.core.p2/category.xml14
-rw-r--r--plugins/org.eclipse.osee.x.core.p2/pom.xml18
3 files changed, 49 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.x.core.p2/.project b/plugins/org.eclipse.osee.x.core.p2/.project
new file mode 100644
index 00000000000..230877faa7a
--- /dev/null
+++ b/plugins/org.eclipse.osee.x.core.p2/.project
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.osee.x.core.p2</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.UpdateSiteBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.UpdateSiteNature</nature>
+ </natures>
+</projectDescription>
diff --git a/plugins/org.eclipse.osee.x.core.p2/category.xml b/plugins/org.eclipse.osee.x.core.p2/category.xml
new file mode 100644
index 00000000000..2abecb01b50
--- /dev/null
+++ b/plugins/org.eclipse.osee.x.core.p2/category.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<site>
+ <feature url="features/org.eclipse.osee.x.core.feature_0.9.9.qualifier.jar" id="org.eclipse.osee.x.core.feature" version="0.9.9.qualifier">
+ <category name="org.eclipse.osee.x.core"/>
+ </feature>
+ <feature url="features/org.eclipse.osee.x.core.feature.source_0.9.9.qualifier.jar" id="org.eclipse.osee.x.core.feature.source" version="0.9.9.qualifier">
+ <category name="org.eclipse.osee.x.core"/>
+ </feature>
+ <category-def name="org.eclipse.osee.x.core" label="Eclipse OSEE X Core - (Incubation)">
+ <description>
+ Eclipse OSEE X Core - (Incubation)
+ </description>
+ </category-def>
+</site>
diff --git a/plugins/org.eclipse.osee.x.core.p2/pom.xml b/plugins/org.eclipse.osee.x.core.p2/pom.xml
new file mode 100644
index 00000000000..f36e9a3887d
--- /dev/null
+++ b/plugins/org.eclipse.osee.x.core.p2/pom.xml
@@ -0,0 +1,18 @@
+<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/maven-v4_0_0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.eclipse.osee</groupId>
+ <artifactId>org.eclipse.osee.x.core.parent</artifactId>
+ <version>0.9.9-SNAPSHOT</version>
+ <relativePath>../../plugins/org.eclipse.osee.x.core.parent</relativePath>
+ </parent>
+
+ <artifactId>org.eclipse.osee.x.core.p2</artifactId>
+ <packaging>eclipse-repository</packaging>
+ <name>OSEE X Core - p2 Site (Incubation)</name>
+ <version>0.9.9-SNAPSHOT</version>
+
+</project>

Back to the top