Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2012-08-28 16:08:48 +0000
committerLars Vogel2012-08-28 16:08:48 +0000
commit46ef849e0887f0d2e970397e6d43cd077a475e1e (patch)
tree4b42d58b08240a7dbbeb56a50595793062680f45 /pom.xml
parent7249a7cec5c91dd57367196f5162093fd958511c (diff)
downloadorg.eclipse.e4.tools-46ef849e0887f0d2e970397e6d43cd077a475e1e.tar.gz
org.eclipse.e4.tools-46ef849e0887f0d2e970397e6d43cd077a475e1e.tar.xz
org.eclipse.e4.tools-46ef849e0887f0d2e970397e6d43cd077a475e1e.zip
Tycho build setup changed based on feedback from Paul Webster
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml37
1 files changed, 37 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 00000000..8e02178a
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012 Eclipse Foundation.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Igor Fedorenko - initial implementation
+ Lars Vogel - Adjustments for e4 tools
+-->
+
+<project
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.eclipse.e4.tools</groupId>
+ <artifactId>platform-aggregator</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <modules>
+ <module>./build/parent</module>
+ <module>./bundles/org.eclipse.e4.tools</module>
+ <module>./bundles/org.eclipse.e4.tools.services</module>
+ <module>./bundles/org.eclipse.e4.tools.compat</module>
+ <module>./bundles/org.eclipse.e4.tools.emf.editor</module>
+ <module>./bundles/org.eclipse.e4.tools.emf.liveeditor</module>
+ <module>./bundles/org.eclipse.e4.tools.emf.editor3x</module>
+ <module>./bundles/org.eclipse.e4.tools.emf.ui</module>
+ <module>./bundles/org.eclipse.e4.tools.emf.ui.script.js</module>
+ <module>./features/org.eclipse.e4.core.tools.feature</module>
+ <module>./build/org.eclipse.e4.core.tools.update/</module>
+ </modules>
+</project>

Back to the top