Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrescobar2011-10-06 00:52:21 +0000
committerRoberto E. Escobar2011-10-06 00:52:21 +0000
commit941c53d51b61df5d3cd7b6d9a217a5972a9279e5 (patch)
tree555b02a804ff76b758b2a6907f3a00ebbea16b72 /plugins/org.eclipse.osee.vaadin.themes
parent8551a0762d39e88a2a6b70bf859bb59eb5b1e3d9 (diff)
downloadorg.eclipse.osee-941c53d51b61df5d3cd7b6d9a217a5972a9279e5.tar.gz
org.eclipse.osee-941c53d51b61df5d3cd7b6d9a217a5972a9279e5.tar.xz
org.eclipse.osee-941c53d51b61df5d3cd7b6d9a217a5972a9279e5.zip
feature[ats_Q9NLC]: Create deployable server through maven
Diffstat (limited to 'plugins/org.eclipse.osee.vaadin.themes')
-rw-r--r--plugins/org.eclipse.osee.vaadin.themes/pom.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.vaadin.themes/pom.xml b/plugins/org.eclipse.osee.vaadin.themes/pom.xml
new file mode 100644
index 00000000000..6c756af324d
--- /dev/null
+++ b/plugins/org.eclipse.osee.vaadin.themes/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.vaadin.themes</artifactId>
+ <packaging>eclipse-plugin</packaging>
+ <name>OSEE Vaadin Themes - (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