Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoberto E. Escobar2012-11-14 00:23:14 +0000
committerRoberto E. Escobar2012-11-14 00:23:14 +0000
commit93389c59546f0c4c625b5c9682f4857eff89d6b3 (patch)
tree0142be308d8bef41015b96b7281e8cbf3008b079 /plugins/org.eclipse.osee.coverage.p2
parentb0a9409517ca3e3b77fa7912fc0ee12041b54a48 (diff)
downloadorg.eclipse.osee-93389c59546f0c4c625b5c9682f4857eff89d6b3.tar.gz
org.eclipse.osee-93389c59546f0c4c625b5c9682f4857eff89d6b3.tar.xz
org.eclipse.osee-93389c59546f0c4c625b5c9682f4857eff89d6b3.zip
refinement[ats_BMDRW]: Create Coverage maven module
Diffstat (limited to 'plugins/org.eclipse.osee.coverage.p2')
-rw-r--r--plugins/org.eclipse.osee.coverage.p2/.project17
-rw-r--r--plugins/org.eclipse.osee.coverage.p2/category.xml14
-rw-r--r--plugins/org.eclipse.osee.coverage.p2/pom.xml31
3 files changed, 62 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.coverage.p2/.project b/plugins/org.eclipse.osee.coverage.p2/.project
new file mode 100644
index 00000000000..c572185f2e5
--- /dev/null
+++ b/plugins/org.eclipse.osee.coverage.p2/.project
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.osee.coverage.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.coverage.p2/category.xml b/plugins/org.eclipse.osee.coverage.p2/category.xml
new file mode 100644
index 00000000000..ea41f023bdc
--- /dev/null
+++ b/plugins/org.eclipse.osee.coverage.p2/category.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<site>
+ <feature url="features/org.eclipse.osee.coverage.feature_0.11.0.qualifier.jar" id="org.eclipse.osee.coverage.feature" version="0.11.0.qualifier">
+ <category name="org.eclipse.osee.coverage"/>
+ </feature>
+ <feature url="features/org.eclipse.osee.coverage.feature.source_0.11.0.qualifier.jar" id="org.eclipse.osee.coverage.feature.source" version="0.11.0.qualifier">
+ <category name="org.eclipse.osee.coverage"/>
+ </feature>
+ <category-def name="org.eclipse.osee.coverage" label="Eclipse OSEE Coverage - (Incubation)">
+ <description>
+ Eclipse OSEE Coverage - (Incubation)
+ </description>
+ </category-def>
+</site>
diff --git a/plugins/org.eclipse.osee.coverage.p2/pom.xml b/plugins/org.eclipse.osee.coverage.p2/pom.xml
new file mode 100644
index 00000000000..ec7935fd06f
--- /dev/null
+++ b/plugins/org.eclipse.osee.coverage.p2/pom.xml
@@ -0,0 +1,31 @@
+<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.coverage.parent</artifactId>
+ <version>0.11.0-SNAPSHOT</version>
+ <relativePath>../../plugins/org.eclipse.osee.coverage.parent</relativePath>
+ </parent>
+
+ <artifactId>org.eclipse.osee.coverage.p2</artifactId>
+ <packaging>eclipse-repository</packaging>
+ <name>OSEE Coverage - p2 Site </name>
+ <version>0.11.0-SNAPSHOT</version>
+
+ <!-- <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-repository-plugin</artifactId>
+ <version>${tycho-version}</version>
+ <configuration>
+ <includeAllDependencies>true</includeAllDependencies>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build> -->
+
+</project> \ No newline at end of file

Back to the top