Bug 396106 - Merge in CBI patches from 4.2.2 into 4.3 (pom changes) for eclipse.platform.swt.binaries
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..93fadb5
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,91 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+###############################################################################
+# Copyright (c) 2012 Red Hat, Inc and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# Krzysztof Daniel, Red Hat, Inc. - initial API and 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>
+ <relativePath>../eclipse-parent</relativePath>
+ </parent>
+
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <artifactId>eclipse.platform.swt.binaries</artifactId>
+ <version>4.2.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <properties>
+ <tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/platform/eclipse.platform.swt.binaries.git</tycho.scmUrl>
+ </properties>
+
+ <modules>
+ <module>bundles/org.eclipse.swt.carbon.macosx</module>
+ <module>bundles/org.eclipse.swt.cocoa.macosx</module>
+ <module>bundles/org.eclipse.swt.cocoa.macosx.x86_64</module>
+ <module>bundles/org.eclipse.swt.gtk.aix.ppc</module>
+ <module>bundles/org.eclipse.swt.gtk.aix.ppc64</module>
+ <module>bundles/org.eclipse.swt.gtk.hpux.ia64</module>
+ <module>bundles/org.eclipse.swt.gtk.hpux.ia64_32</module>
+ <module>bundles/org.eclipse.swt.gtk.linux.ia64</module>
+ <module>bundles/org.eclipse.swt.gtk.linux.ppc</module>
+ <module>bundles/org.eclipse.swt.gtk.linux.ppc64</module>
+ <module>bundles/org.eclipse.swt.gtk.linux.s390</module>
+ <module>bundles/org.eclipse.swt.gtk.linux.s390x</module>
+ <module>bundles/org.eclipse.swt.gtk.linux.x86</module>
+ <module>bundles/org.eclipse.swt.gtk.linux.x86_64</module>
+ <module>bundles/org.eclipse.swt.gtk.solaris.sparc</module>
+ <module>bundles/org.eclipse.swt.gtk.solaris.x86</module>
+ <module>bundles/org.eclipse.swt.motif.aix.ppc</module>
+ <module>bundles/org.eclipse.swt.motif.hpux.ia64_32</module>
+ <module>bundles/org.eclipse.swt.motif.hpux.PA_RISC</module>
+ <module>bundles/org.eclipse.swt.motif.solaris.sparc</module>
+ <module>bundles/org.eclipse.swt.photon.qnx.x86</module>
+ <module>bundles/org.eclipse.swt.win32.wce_ppc.arm</module>
+ <module>bundles/org.eclipse.swt.win32.win32.ia64</module>
+ <module>bundles/org.eclipse.swt.win32.win32.x86</module>
+ <module>bundles/org.eclipse.swt.win32.win32.x86_64</module>
+ <module>bundles/org.eclipse.swt.wpf.win32.x86</module>
+ </modules>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <configuration>
+ <!--
+ minimal declared bree is CDC-1.0/Foundation-1.0
+ all/most swt fragments require awt during build so one of j2se is required
+ theoretically we should be using J2SE-1.3, but I am too lazy to locate
+ and install it for my linux/x64 system.
+ -->
+ <executionEnvironment>J2SE-1.4</executionEnvironment>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-compiler-plugin</artifactId>
+ <configuration>
+ <!-- setup compiler source/target to match CDC-1.0/Foundation-1.0 -->
+ <source>1.3</source>
+ <target>1.1</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>