Bug 379748 - Pull request for Equinox from CBI

Add poms for Tycho build
diff --git a/bundles/org.eclipse.equinox.executable/pom.xml b/bundles/org.eclipse.equinox.executable/pom.xml
new file mode 100644
index 0000000..5ac0e18
--- /dev/null
+++ b/bundles/org.eclipse.equinox.executable/pom.xml
@@ -0,0 +1,40 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>rt.equinox.framework</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.executable</artifactId>
+  <version>3.6.0-SNAPSHOT</version>
+  <packaging>eclipse-feature</packaging>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.eclipse.tycho</groupId>
+        <artifactId>target-platform-configuration</artifactId>
+        <configuration>
+          <allowConflictingDependencies>true</allowConflictingDependencies>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.carbon.macosx/pom.xml b/bundles/org.eclipse.equinox.launcher.carbon.macosx/pom.xml
new file mode 100644
index 0000000..b018fab
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.carbon.macosx/pom.xml
@@ -0,0 +1,52 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.carbon.macosx</artifactId>
+  <version>1.1.200-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+  </properties>
+
+  <build>
+    <plugins>
+      <!-- tycho is not able to automatically determine os/ws/arch of this bundle -->
+      <plugin>
+        <groupId>org.eclipse.tycho</groupId>
+        <artifactId>target-platform-configuration</artifactId>
+        <version>${tycho.version}</version>
+        <configuration>
+          <resolver>p2</resolver>
+          <environments>
+            <environment>
+              <os>macosx</os>
+              <ws>carbon</ws>
+              <arch>x86</arch>
+            </environment>
+          </environments>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.cocoa.macosx.x86_64/pom.xml b/bundles/org.eclipse.equinox.launcher.cocoa.macosx.x86_64/pom.xml
new file mode 100644
index 0000000..d90abfb
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.cocoa.macosx.x86_64/pom.xml
@@ -0,0 +1,31 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.cocoa.macosx.x86_64</artifactId>
+  <version>1.1.200-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+  </properties>
+
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.cocoa.macosx/pom.xml b/bundles/org.eclipse.equinox.launcher.cocoa.macosx/pom.xml
new file mode 100644
index 0000000..67f0762
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.cocoa.macosx/pom.xml
@@ -0,0 +1,51 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.cocoa.macosx</artifactId>
+  <version>1.1.200-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+  </properties>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.eclipse.tycho</groupId>
+        <artifactId>target-platform-configuration</artifactId>
+        <version>${tycho.version}</version>
+        <configuration>
+          <resolver>p2</resolver>
+          <environments>
+            <environment>
+              <os>macosx</os>
+              <ws>cocoa</ws>
+              <arch>x86</arch>
+            </environment>
+          </environments>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.gtk.aix.ppc/pom.xml b/bundles/org.eclipse.equinox.launcher.gtk.aix.ppc/pom.xml
new file mode 100644
index 0000000..bd62222
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.gtk.aix.ppc/pom.xml
@@ -0,0 +1,31 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.gtk.aix.ppc</artifactId>
+  <version>1.1.0-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+  </properties>
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.gtk.aix.ppc64/pom.xml b/bundles/org.eclipse.equinox.launcher.gtk.aix.ppc64/pom.xml
new file mode 100644
index 0000000..f0a4c65
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.gtk.aix.ppc64/pom.xml
@@ -0,0 +1,31 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.gtk.aix.ppc64</artifactId>
+  <version>1.1.0-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+  </properties>
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.gtk.hpux.ia64_32/pom.xml b/bundles/org.eclipse.equinox.launcher.gtk.hpux.ia64_32/pom.xml
new file mode 100644
index 0000000..316e3ff
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.gtk.hpux.ia64_32/pom.xml
@@ -0,0 +1,32 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.gtk.hpux.ia64_32</artifactId>
+  <version>1.0.0-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+  </properties>
+
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.gtk.linux.ppc/pom.xml b/bundles/org.eclipse.equinox.launcher.gtk.linux.ppc/pom.xml
new file mode 100644
index 0000000..22d93d5
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.gtk.linux.ppc/pom.xml
@@ -0,0 +1,30 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.gtk.linux.ppc</artifactId>
+  <version>1.1.200-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+  </properties>
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.gtk.linux.ppc64/pom.xml b/bundles/org.eclipse.equinox.launcher.gtk.linux.ppc64/pom.xml
new file mode 100644
index 0000000..137ff6a
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.gtk.linux.ppc64/pom.xml
@@ -0,0 +1,31 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.gtk.linux.ppc64</artifactId>
+  <version>1.0.200-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+  </properties>
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.gtk.linux.s390/pom.xml b/bundles/org.eclipse.equinox.launcher.gtk.linux.s390/pom.xml
new file mode 100644
index 0000000..fbf52ae
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.gtk.linux.s390/pom.xml
@@ -0,0 +1,26 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.gtk.linux.s390</artifactId>
+  <version>1.1.100-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.gtk.linux.s390x/pom.xml b/bundles/org.eclipse.equinox.launcher.gtk.linux.s390x/pom.xml
new file mode 100644
index 0000000..ea183df
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.gtk.linux.s390x/pom.xml
@@ -0,0 +1,26 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.gtk.linux.s390x</artifactId>
+  <version>1.1.100-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.gtk.linux.x86/pom.xml b/bundles/org.eclipse.equinox.launcher.gtk.linux.x86/pom.xml
new file mode 100644
index 0000000..fdd83c0
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.gtk.linux.x86/pom.xml
@@ -0,0 +1,31 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.gtk.linux.x86</artifactId>
+  <version>1.1.200-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+  </properties>
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.gtk.linux.x86_64/pom.xml b/bundles/org.eclipse.equinox.launcher.gtk.linux.x86_64/pom.xml
new file mode 100644
index 0000000..b16654b
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.gtk.linux.x86_64/pom.xml
@@ -0,0 +1,31 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.gtk.linux.x86_64</artifactId>
+  <version>1.1.200-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+  </properties>
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.gtk.solaris.sparc/pom.xml b/bundles/org.eclipse.equinox.launcher.gtk.solaris.sparc/pom.xml
new file mode 100644
index 0000000..dbde212
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.gtk.solaris.sparc/pom.xml
@@ -0,0 +1,31 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.gtk.solaris.sparc</artifactId>
+  <version>1.1.200-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+  </properties>
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.gtk.solaris.x86/pom.xml b/bundles/org.eclipse.equinox.launcher.gtk.solaris.x86/pom.xml
new file mode 100644
index 0000000..e8c92e7
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.gtk.solaris.x86/pom.xml
@@ -0,0 +1,31 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.gtk.solaris.x86</artifactId>
+  <version>1.1.200-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+  </properties>
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.motif.aix.ppc/pom.xml b/bundles/org.eclipse.equinox.launcher.motif.aix.ppc/pom.xml
new file mode 100644
index 0000000..19d1a72
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.motif.aix.ppc/pom.xml
@@ -0,0 +1,31 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.motif.aix.ppc</artifactId>
+  <version>1.1.200-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+  </properties>
+
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.motif.hpux.ia64_32/pom.xml b/bundles/org.eclipse.equinox.launcher.motif.hpux.ia64_32/pom.xml
new file mode 100644
index 0000000..0c8bdb1
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.motif.hpux.ia64_32/pom.xml
@@ -0,0 +1,32 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.motif.hpux.ia64_32</artifactId>
+  <version>1.1.200-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+  </properties>
+
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.motif.linux.x86/pom.xml b/bundles/org.eclipse.equinox.launcher.motif.linux.x86/pom.xml
new file mode 100644
index 0000000..92d46b6
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.motif.linux.x86/pom.xml
@@ -0,0 +1,31 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.motif.linux.x86</artifactId>
+  <version>1.1.200-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+  </properties>
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.motif.solaris.sparc/pom.xml b/bundles/org.eclipse.equinox.launcher.motif.solaris.sparc/pom.xml
new file mode 100644
index 0000000..df30227
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.motif.solaris.sparc/pom.xml
@@ -0,0 +1,31 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.motif.solaris.sparc</artifactId>
+  <version>1.1.200-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+  </properties>
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.win32.win32.ia64/pom.xml b/bundles/org.eclipse.equinox.launcher.win32.win32.ia64/pom.xml
new file mode 100644
index 0000000..8dca237
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.win32.win32.ia64/pom.xml
@@ -0,0 +1,31 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.win32.win32.ia64</artifactId>
+  <version>1.2.200-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+    <launcher-binary.ext>dll</launcher-binary.ext>
+  </properties>
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.win32.win32.x86/pom.xml b/bundles/org.eclipse.equinox.launcher.win32.win32.x86/pom.xml
new file mode 100644
index 0000000..94d5e4f
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.win32.win32.x86/pom.xml
@@ -0,0 +1,32 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.win32.win32.x86</artifactId>
+  <version>1.1.200-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+    <launcher-binary.ext>dll</launcher-binary.ext>
+  </properties>
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.win32.win32.x86_64/pom.xml b/bundles/org.eclipse.equinox.launcher.win32.win32.x86_64/pom.xml
new file mode 100644
index 0000000..3666980
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.win32.win32.x86_64/pom.xml
@@ -0,0 +1,32 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.win32.win32.x86_64</artifactId>
+  <version>1.1.200-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+    <launcher-binary.ext>dll</launcher-binary.ext>
+  </properties>
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher.wpf.win32.x86/pom.xml b/bundles/org.eclipse.equinox.launcher.wpf.win32.x86/pom.xml
new file mode 100644
index 0000000..8bf65d1
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.wpf.win32.x86/pom.xml
@@ -0,0 +1,32 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>launcher-binary-parent</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../launcher-binary-parent</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher.wpf.win32.x86</artifactId>
+  <version>1.1.200-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <properties>
+    <launcher-binary.version>1500</launcher-binary.version>
+    <launcher-binary.ext>dll</launcher-binary.ext>
+  </properties>
+</project>
diff --git a/bundles/org.eclipse.equinox.launcher/pom.xml b/bundles/org.eclipse.equinox.launcher/pom.xml
new file mode 100644
index 0000000..e2ddc49
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher/pom.xml
@@ -0,0 +1,26 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>rt.equinox.framework</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.launcher</artifactId>
+  <version>1.3.0-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/bundles/org.eclipse.osgi.services/pom.xml b/bundles/org.eclipse.osgi.services/pom.xml
new file mode 100644
index 0000000..50818d2
--- /dev/null
+++ b/bundles/org.eclipse.osgi.services/pom.xml
@@ -0,0 +1,48 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>rt.equinox.framework</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.osgi.services</artifactId>
+  <version>3.3.0-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.eclipse.tycho</groupId>
+        <artifactId>target-platform-configuration</artifactId>
+        <!-- 
+        When building monolith, optional import-package javax.microedition.io causes circular dependency
+        between this org.eclipse.osgi.services bundle and org.eclipse.equinox.io. 
+        Since this bundle does not need to compile anything, we just disable optional dependencies during
+        the build. 
+         -->
+        <configuration>
+          <dependency-resolution>
+            <optionalDependencies>ignore</optionalDependencies>
+          </dependency-resolution>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>
diff --git a/bundles/org.eclipse.osgi.tests/pom.xml b/bundles/org.eclipse.osgi.tests/pom.xml
new file mode 100644
index 0000000..b46c8e2
--- /dev/null
+++ b/bundles/org.eclipse.osgi.tests/pom.xml
@@ -0,0 +1,88 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>rt.equinox.framework</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.osgi.tests</artifactId>
+  <version>3.8.0-SNAPSHOT</version>
+  <packaging>eclipse-test-plugin</packaging>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.eclipse.tycho</groupId>
+        <artifactId>tycho-surefire-plugin</artifactId>
+        <version>${tycho.version}</version>
+        <configuration>
+          <testFramework>org.junit</testFramework>
+          <testSuite>org.eclipse.osgi.tests</testSuite>
+          <testClass>org.eclipse.osgi.tests.AutomatedTests</testClass>
+          <dependencies>
+            <dependency>
+              <artifactId>org.eclipse.core.runtime.compatibility.registry</artifactId>
+              <type>eclipse-plugin</type>
+            </dependency>
+            <dependency>
+              <artifactId>org.eclipse.jdt.junit4.runtime</artifactId>
+              <type>eclipse-plugin</type>
+            </dependency>
+            <dependency>
+              <artifactId>org.eclipse.equinox.event</artifactId>
+              <type>eclipse-plugin</type>
+            </dependency>
+            <dependency>
+              <artifactId>org.eclipse.equinox.ds</artifactId>
+              <type>eclipse-plugin</type>
+            </dependency>
+          </dependencies>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <profiles>
+    <profile>
+      <id>osx</id>
+      <activation>
+        <property>
+          <name>java.vendor.url</name>
+          <value>http://www.apple.com/</value>
+        </property>
+      </activation>
+      <build>
+        <pluginManagement>
+          <plugins>
+            <plugin>
+              <groupId>org.eclipse.tycho</groupId>
+              <artifactId>tycho-surefire-plugin</artifactId>
+              <version>${tycho.version}</version>
+              <configuration>
+                <argLine>-Xmx512m -XX:MaxPermSize=256m -XstartOnFirstThread</argLine>
+              </configuration>
+            </plugin>
+          </plugins>
+        </pluginManagement>
+      </build>
+    </profile>
+  </profiles>
+
+
+</project>
diff --git a/bundles/org.eclipse.osgi.util/pom.xml b/bundles/org.eclipse.osgi.util/pom.xml
new file mode 100644
index 0000000..a615df0
--- /dev/null
+++ b/bundles/org.eclipse.osgi.util/pom.xml
@@ -0,0 +1,26 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>rt.equinox.framework</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.osgi.util</artifactId>
+  <version>3.2.200-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/bundles/org.eclipse.osgi/pom.xml b/bundles/org.eclipse.osgi/pom.xml
new file mode 100644
index 0000000..c46d8fa
--- /dev/null
+++ b/bundles/org.eclipse.osgi/pom.xml
@@ -0,0 +1,27 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>rt.equinox.framework</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.osgi</artifactId>
+  <version>3.8.0-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/bundles/org.eclipse.osgi/supplement/pom.xml b/bundles/org.eclipse.osgi/supplement/pom.xml
new file mode 100644
index 0000000..791924e
--- /dev/null
+++ b/bundles/org.eclipse.osgi/supplement/pom.xml
@@ -0,0 +1,30 @@
+<?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
+-->
+
+<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>
+
+  <parent>
+    <artifactId>rt.equinox.framework</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../../</relativePath>
+  </parent>
+
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.supplement</artifactId>
+  <version>1.4.100-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+</project>
diff --git a/features/org.eclipse.equinox.core.sdk/pom.xml b/features/org.eclipse.equinox.core.sdk/pom.xml
new file mode 100644
index 0000000..51b0e2b
--- /dev/null
+++ b/features/org.eclipse.equinox.core.sdk/pom.xml
@@ -0,0 +1,40 @@
+<?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
+-->
+
+<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>
+  <parent>
+    <artifactId>rt.equinox.framework</artifactId>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <version>3.8.0-SNAPSHOT</version>
+    <relativePath>../../</relativePath>
+  </parent>
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>org.eclipse.equinox.core.sdk</artifactId>
+  <version>3.8.0-SNAPSHOT</version>
+  <packaging>eclipse-feature</packaging>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.eclipse.tycho</groupId>
+        <artifactId>target-platform-configuration</artifactId>
+        <configuration>
+          <!-- J2SE-1.5 is the minimum version required for javax.security.sasl required by this package. -->
+          <executionEnvironment>J2SE-1.5</executionEnvironment>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>
diff --git a/launcher-binary-parent/pom.xml b/launcher-binary-parent/pom.xml
new file mode 100644
index 0000000..6c6d10b
--- /dev/null
+++ b/launcher-binary-parent/pom.xml
@@ -0,0 +1,65 @@
+<?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
+-->
+
+<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>
+
+  <parent>
+    <groupId>org.eclipse.equinox.framework</groupId>
+    <artifactId>rt.equinox.framework</artifactId>
+    <version>3.8.0-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>launcher-binary-parent</artifactId>
+  <packaging>pom</packaging>
+
+  <properties>
+    <launcher-binary.version>1407</launcher-binary.version>
+    <launcher-binary.ext>so</launcher-binary.ext>
+  </properties>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-dependency-plugin</artifactId>
+        <version>2.3</version>
+        <executions>
+          <execution>
+            <id>copy-binary</id>
+            <goals>
+              <goal>copy</goal>
+            </goals>
+            <phase>generate-resources</phase>
+            <configuration>
+              <artifactItems>
+                <artifactItem>
+                  <groupId>${project.groupId}</groupId>
+                  <artifactId>${project.artifactId}</artifactId>
+                  <version>${launcher-binary.version}</version>
+                  <classifier>binary</classifier>
+                  <type>${launcher-binary.ext}</type>
+
+                  <outputDirectory>${project.basedir}</outputDirectory>
+                  <destFileName>eclipse_${launcher-binary.version}.${launcher-binary.ext}</destFileName>
+                </artifactItem>
+              </artifactItems>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..efc3873
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,66 @@
+<?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
+-->
+
+<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>
+
+  <parent>
+    <groupId>org.eclipse</groupId>
+    <artifactId>eclipse-parent</artifactId>
+    <version>1.0.0-SNAPSHOT</version>
+  </parent>
+
+  <groupId>org.eclipse.equinox.framework</groupId>
+  <artifactId>rt.equinox.framework</artifactId>
+  <version>3.8.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+
+  <modules>
+    <module>bundles/org.eclipse.osgi</module>
+    <module>bundles/org.eclipse.osgi.services</module>
+    <module>bundles/org.eclipse.osgi.util</module>
+    <module>bundles/org.eclipse.osgi/supplement</module>
+    
+    <!-- 
+    <module>bundles/org.eclipse.equinox.launcher</module>
+    <module>bundles/org.eclipse.equinox.launcher.carbon.macosx</module>
+    <module>bundles/org.eclipse.equinox.launcher.cocoa.macosx</module>
+    <module>bundles/org.eclipse.equinox.launcher.cocoa.macosx.x86_64</module>
+    <module>bundles/org.eclipse.equinox.launcher.gtk.aix.ppc</module>
+    <module>bundles/org.eclipse.equinox.launcher.gtk.aix.ppc64</module>
+    <module>bundles/org.eclipse.equinox.launcher.gtk.hpux.ia64_32</module>
+    <module>bundles/org.eclipse.equinox.launcher.gtk.linux.ppc</module>
+    <module>bundles/org.eclipse.equinox.launcher.gtk.linux.ppc64</module>
+    <module>bundles/org.eclipse.equinox.launcher.gtk.linux.s390</module>
+    <module>bundles/org.eclipse.equinox.launcher.gtk.linux.s390x</module>
+    <module>bundles/org.eclipse.equinox.launcher.gtk.linux.x86</module>
+    <module>bundles/org.eclipse.equinox.launcher.gtk.linux.x86_64</module>
+    <module>bundles/org.eclipse.equinox.launcher.gtk.solaris.sparc</module>
+    <module>bundles/org.eclipse.equinox.launcher.gtk.solaris.x86</module>
+    <module>bundles/org.eclipse.equinox.launcher.motif.aix.ppc</module>
+    <module>bundles/org.eclipse.equinox.launcher.motif.hpux.ia64_32</module>
+    <module>bundles/org.eclipse.equinox.launcher.motif.linux.x86</module>
+    <module>bundles/org.eclipse.equinox.launcher.motif.solaris.sparc</module>
+    <module>bundles/org.eclipse.equinox.launcher.win32.win32.ia64</module>
+    <module>bundles/org.eclipse.equinox.launcher.win32.win32.x86</module>
+    <module>bundles/org.eclipse.equinox.launcher.win32.win32.x86_64</module>
+    <module>bundles/org.eclipse.equinox.launcher.wpf.win32.x86</module>
+    <module>bundles/org.eclipse.equinox.executable</module>
+    <module>features/rt.equinox.framework.site</module>
+     -->
+    <module>bundles/org.eclipse.osgi.tests</module>
+    <module>features/org.eclipse.equinox.core.sdk</module>
+  </modules>
+
+</project>