Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuentin Le Menez2017-03-06 15:03:03 +0000
committerQuentin Le Menez2017-03-09 10:27:00 +0000
commit4127daf9fa1e1913bbd99318389ef6543a564c5c (patch)
tree1625093b3ede82ca4f6ed17df9e8f78995ee2baa /pom.xml
parentffe1ffa828cd0d9dfcf014748bedc77d5431d3f0 (diff)
downloadorg.eclipse.papyrus-collaborativemodeling-4127daf9fa1e1913bbd99318389ef6543a564c5c.tar.gz
org.eclipse.papyrus-collaborativemodeling-4127daf9fa1e1913bbd99318389ef6543a564c5c.tar.xz
org.eclipse.papyrus-collaborativemodeling-4127daf9fa1e1913bbd99318389ef6543a564c5c.zip
[releng] [Collaborative Modeling] Populate the git repository
- Basic architecture - targetplatform tailored to Eclipse and papyrus Oxygen - Amended headers and added missing ones - added the documentation plugin to cdo - Added the possibility to run tests even if they fail Change-Id: I479828eb98569f5208f2685b88f83a33ad04cb8f Signed-off-by: Quentin Le Menez <quentin.lemenez@cea.fr>
Diffstat (limited to 'pom.xml')
-rwxr-xr-xpom.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100755
index 00000000..9e089c0e
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <!-- Parent of this POM -->
+ <parent>
+ <version>0.7.0-SNAPSHOT</version>
+ <groupId>org.eclipse.papyrus.collaborativemodeling</groupId>
+ <artifactId>org.eclipse.papyrus.collaborativemodeling.releng.configuration</artifactId>
+ <relativePath>./releng/org.eclipse.papyrus.collaborativemodeling.configuration</relativePath>
+ </parent>
+
+ <!-- Project root POM (aggregator) -->
+ <groupId>org.eclipse.papyrus.collaborativemodeling</groupId>
+ <artifactId>org.eclipse.papyrus.collaborativemodeling.root</artifactId>
+ <version>0.7.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>Collaborative Modeling</name>
+ <description>Papyrus Collaborative Modeling</description>
+
+ <!-- Children modules to build -->
+ <modules>
+ <module>plugins</module>
+ <module>releng</module>
+ <!-- <module>tests</module> -->
+ </modules>
+
+</project>

Back to the top