Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M Finkbeiner2012-08-06 23:16:04 +0000
committerRoberto E. Escobar2012-08-06 23:16:04 +0000
commit423175b0fa97ebe9ef811a58bcdf31974f41deea (patch)
treeef72d3f11c35f0eaee315e09447a50fef74232a7 /plugins/org.eclipse.osee.ote.version/pom.xml
parente7778297e5c5b2db9a6a7f679996f0b1a3b21b14 (diff)
downloadorg.eclipse.osee-423175b0fa97ebe9ef811a58bcdf31974f41deea.tar.gz
org.eclipse.osee-423175b0fa97ebe9ef811a58bcdf31974f41deea.tar.xz
org.eclipse.osee-423175b0fa97ebe9ef811a58bcdf31974f41deea.zip
feature[ats_342ZC]: Add ote version projects
Diffstat (limited to 'plugins/org.eclipse.osee.ote.version/pom.xml')
-rw-r--r--plugins/org.eclipse.osee.ote.version/pom.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.ote.version/pom.xml b/plugins/org.eclipse.osee.ote.version/pom.xml
new file mode 100644
index 00000000000..c89e980f6b1
--- /dev/null
+++ b/plugins/org.eclipse.osee.ote.version/pom.xml
@@ -0,0 +1,35 @@
+<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.ote.parent</artifactId>
+ <version>0.10.1-SNAPSHOT</version>
+ <relativePath>../../plugins/org.eclipse.osee.ote.parent</relativePath>
+ </parent>
+
+ <artifactId>org.eclipse.osee.ote.version</artifactId>
+ <packaging>eclipse-plugin</packaging>
+ <name>OTE Ui Test Manager (Incubation)</name>
+
+ <build>
+ <!-- workaround for https://issues.sonatype.org/browse/TYCHO-168 -->
+ <resources>
+ <resource>
+ <directory>src</directory>
+ <excludes>
+ <exclude>**/*.java</exclude>
+ </excludes>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-source-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+
+</project> \ No newline at end of file

Back to the top