Due to the Maven bug related to having multiple packaging plugins, I had
to separate our pom into two different ones (one for the old plugin and
one for the new). A new ant file can be used to build the two pom files.


git-svn-id: https://svn.apache.org/repos/asf/incubator/felix/trunk@470536 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/build.xml b/build.xml
new file mode 100644
index 0000000..d48ae0e
--- /dev/null
+++ b/build.xml
@@ -0,0 +1,26 @@
+<project default="all">
+    <target name="clean">
+        <exec executable="mvn" failonerror="true">
+            <arg line="-f pom-new-plugin.xml clean" />
+        </exec>
+        <exec executable="mvn" failonerror="true">
+            <arg line="-f pom-old-plugin.xml clean" />
+        </exec>
+    </target>
+    <target name="install">
+        <exec executable="mvn" failonerror="true">
+            <arg line="-f pom-new-plugin.xml install" />
+        </exec>
+        <exec executable="mvn" failonerror="true">
+            <arg line="-f pom-old-plugin.xml install" />
+        </exec>
+    </target>
+    <target name="all">
+        <exec executable="mvn" failonerror="true">
+            <arg line="-f pom-new-plugin.xml clean install" />
+        </exec>
+        <exec executable="mvn" failonerror="true">
+            <arg line="-f pom-old-plugin.xml clean install" />
+        </exec>
+    </target>
+</project>