Bug 396106 - Merge in CBI patches from 4.2.2 into 4.3 (pom changes) for eclipse.platform.swt.binaries
diff --git a/bundles/binaries-parent/pom.xml b/bundles/binaries-parent/pom.xml
new file mode 100644
index 0000000..b8670c6
--- /dev/null
+++ b/bundles/binaries-parent/pom.xml
@@ -0,0 +1,77 @@
+<?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>
+    <artifactId>eclipse.platform.swt.binaries</artifactId>
+    <groupId>eclipse.platform.swt.binaries</groupId>
+    <version>4.2.0-SNAPSHOT</version>
+    <relativePath>../../</relativePath>
+  </parent>
+  <groupId>eclipse.platform.swt.binaries</groupId>
+  <artifactId>binaries-parent</artifactId>
+  <version>4.2.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.eclipse.tycho</groupId>
+        <artifactId>target-platform-configuration</artifactId>
+        <version>${tycho.version}</version>
+        <configuration>
+          <environments>
+            <environment>
+              <os>${os}</os>
+              <ws>${ws}</ws>
+              <arch>${arch}</arch>
+            </environment>
+          </environments>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <version>1.7</version>
+        <executions>
+          <execution>
+            <id>normal</id>
+            <phase>compile</phase>
+            <configuration>
+              <target>
+                <property name="build.compiler" value="extJavac" />
+                <delete dir="org" failonerror="false" />
+                <delete dir="src" failonerror="false" />
+                <ant antfile="build.xml" target="build.jars" />
+                <copy toDir=".">
+                  <fileset dir="@dot/" />
+                </copy>
+                <copy toDir="src/org/">
+                  <fileset dir="temp.folder/@dot.src/org/" />
+                </copy>
+                <copy toDir="target/classes/org/">
+                  <fileset dir="@dot/org/" />
+                </copy>
+              </target>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>