Create parent project and parent pom
* Template: https://wiki.eclipse.org/Minerva#Building
Change-Id: I089a8a61cc410be04d27845c8990e50d692e4386
diff --git a/parent/.project b/parent/.project
new file mode 100644
index 0000000..b332d9b
--- /dev/null
+++ b/parent/.project
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>parent</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ </buildSpec>
+ <natures>
+ </natures>
+</projectDescription>
diff --git a/parent/pom.xml b/parent/pom.xml
new file mode 100644
index 0000000..9c32c30
--- /dev/null
+++ b/parent/pom.xml
@@ -0,0 +1,104 @@
+<?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/maven-v4_0_0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+ <name>Graphiti Parent</name>
+ <groupId>org.eclipse.modeling.graphiti</groupId>
+ <artifactId>parent</artifactId>
+ <version>0.12.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <properties>
+ <tycho-version>0.22.0</tycho-version>
+ <platform-version-name>mars</platform-version-name>
+ <platform-site>http://download.eclipse.org/eclipse/updates/${platform-path}</platform-site>
+ <orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/${orbit-version}/repository/</orbit-site>
+ <gef-site>http://download.eclipse.org/tools/gef/updates/${gef-path}</gef-site>
+ <emf-site>http://download.eclipse.org/modeling/emf/emf/updates/${emf-path}</emf-site>
+ <emf-transactions-site>http://download.eclipse.org/modeling/emf/transaction/updates/${emf-transactions-path}</emf-transactions-site>
+ <emf-validation-site>http://download.eclipse.org/modeling/emf/validation/updates/${emf-validation-path}</emf-validation-site>
+ <swtbot-site>http://download.eclipse.org/technology/swtbot/${swtbot-path}</swtbot-site>
+ <license-site>http://download.eclipse.org/cbi/updates/license/</license-site>
+ </properties>
+
+ <profiles>
+ <profile>
+ <id>mars</id>
+ <activation>
+ <property>
+ <name>platform-version-name</name>
+ <value>mars</value>
+ </property>
+ </activation>
+ <properties>
+ <platform-path>4.5milestones/S-4.5RC2a-201505222000/</platform-path>
+ <orbit-version>R20150519210750</orbit-version>
+ <gef-path>milestones/</gef-path>
+ <emf-path>2.11milestones/</emf-path>
+ <emf-transactions-path>milestones/S201505060251/</emf-transactions-path>
+ <emf-validation-path>milestones/S201505060134/</emf-validation-path>
+ <swtbot-path>snapshots/</swtbot-path>
+ </properties>
+ </profile>
+ </profiles>
+
+ <repositories>
+ <repository>
+ <id>platform</id>
+ <layout>p2</layout>
+ <url>${platform-site}</url>
+ </repository>
+ <repository>
+ <id>orbit</id>
+ <layout>p2</layout>
+ <url>${orbit-site}</url>
+ </repository>
+ <repository>
+ <id>gef</id>
+ <layout>p2</layout>
+ <url>${gef-site}</url>
+ </repository>
+ <repository>
+ <id>emf</id>
+ <layout>p2</layout>
+ <url>${emf-site}</url>
+ </repository>
+ <repository>
+ <id>emf-transactions</id>
+ <layout>p2</layout>
+ <url>${emf-transactions-site}</url>
+ </repository>
+ <repository>
+ <id>emf-validation</id>
+ <layout>p2</layout>
+ <url>${emf-validation-site}</url>
+ </repository>
+ <repository>
+ <id>swtbot</id>
+ <layout>p2</layout>
+ <url>${swtbot-site}</url>
+ </repository>
+ <repository>
+ <id>license</id>
+ <layout>p2</layout>
+ <url>${license-site}</url>
+ </repository>
+ </repositories>
+
+ <modules>
+ </modules>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-packaging-plugin</artifactId>
+ <version>${tycho-version}</version>
+ <configuration>
+ <format>'v'yyyyMMdd-HHmm</format>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file