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.parent
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.parent')
-rw-r--r--plugins/org.eclipse.osee.coverage.parent/.project11
-rw-r--r--plugins/org.eclipse.osee.coverage.parent/pom.xml29
2 files changed, 40 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.coverage.parent/.project b/plugins/org.eclipse.osee.coverage.parent/.project
new file mode 100644
index 00000000000..949e257b491
--- /dev/null
+++ b/plugins/org.eclipse.osee.coverage.parent/.project
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.osee.coverage.parent</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ </buildSpec>
+ <natures>
+ </natures>
+</projectDescription>
diff --git a/plugins/org.eclipse.osee.coverage.parent/pom.xml b/plugins/org.eclipse.osee.coverage.parent/pom.xml
new file mode 100644
index 00000000000..9932f39424a
--- /dev/null
+++ b/plugins/org.eclipse.osee.coverage.parent/pom.xml
@@ -0,0 +1,29 @@
+<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.ide.parent</artifactId>
+ <version>0.11.0-SNAPSHOT</version>
+ <relativePath>../../plugins/org.eclipse.osee.ide.parent</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.osee</groupId>
+ <artifactId>org.eclipse.osee.coverage.parent</artifactId>
+ <packaging>pom</packaging>
+ <name>OSEE Coverage - Parent (Incubation)</name>
+ <version>0.11.0-SNAPSHOT</version>
+
+ <modules>
+ <module>../../plugins/org.eclipse.osee.coverage</module>
+ <module>../../plugins/org.eclipse.osee.coverage.help.ui</module>
+
+ <module>../../features/org.eclipse.osee.coverage.feature</module>
+ <module>../../features/org.eclipse.osee.coverage.feature.source</module>
+
+ <module>../../plugins/org.eclipse.osee.coverage.p2</module>
+ </modules>
+
+</project>

Back to the top