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.mail
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.mail')
-rw-r--r--plugins/org.eclipse.osee.mail/pom.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.mail/pom.xml b/plugins/org.eclipse.osee.mail/pom.xml
new file mode 100644
index 00000000000..c902c0dfbe4
--- /dev/null
+++ b/plugins/org.eclipse.osee.mail/pom.xml
@@ -0,0 +1,34 @@
+<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.mail</artifactId>
+ <packaging>eclipse-plugin</packaging>
+ <name>OSEE Mail - (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