Updates to Felix Commons subproject:
o  Added wrapper POM for antlr.
o  Added wrapper POM for commons-collections.
o  Added wrapper POM for jzlib.
o  Updated parent POM to build new modules.

git-svn-id: https://svn.apache.org/repos/asf/incubator/felix/trunk@512009 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/commons/antlr/pom.xml b/commons/antlr/pom.xml
new file mode 100644
index 0000000..3c39202
--- /dev/null
+++ b/commons/antlr/pom.xml
@@ -0,0 +1,52 @@
+<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>
+
+    <parent>
+        <groupId>org.apache.felix.commons</groupId>
+        <artifactId>build</artifactId>
+        <version>0.9.0-incubator-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.apache.felix.commons</groupId>
+    <artifactId>antlr-osgi</artifactId>
+    <version>2.7.6</version>
+    <packaging>bundle</packaging>
+
+    <name>${pom.artifactId} bundle</name>
+    <description>
+        This bundle simply wraps antlr-${pom.version}.jar.
+    </description>
+
+    <organization> 
+        <name>Apache Felix Project</name> 
+        <url>http://incubator.apache.org/felix/</url> 
+    </organization>
+
+    <dependencies>
+        <dependency>
+            <groupId>antlr</groupId>
+            <artifactId>antlr</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+                        <Export-Package>*</Export-Package>
+                        <Import-Package>!javax.*</Import-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
diff --git a/commons/commons-collections/pom.xml b/commons/commons-collections/pom.xml
new file mode 100644
index 0000000..2ae2aa5
--- /dev/null
+++ b/commons/commons-collections/pom.xml
@@ -0,0 +1,52 @@
+<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>
+
+    <parent>
+        <groupId>org.apache.felix.commons</groupId>
+        <artifactId>build</artifactId>
+        <version>0.9.0-incubator-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.apache.felix.commons</groupId>
+    <artifactId>commons-collections-osgi</artifactId>
+    <version>3.2</version>
+    <packaging>bundle</packaging>
+
+    <name>${pom.artifactId} bundle</name>
+    <description>
+        This bundle simply wraps commons-collections-${pom.version}.jar.
+    </description>
+
+    <organization> 
+        <name>Apache Felix Project</name> 
+        <url>http://incubator.apache.org/felix/</url> 
+    </organization>
+
+    <dependencies>
+        <dependency>
+            <groupId>commons-collections</groupId>
+            <artifactId>commons-collections</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                    <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+	            <Export-Package>*</Export-Package>
+                    <Import-Package>!org.apache.commons.collections.*</Import-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
diff --git a/commons/jzlib/pom.xml b/commons/jzlib/pom.xml
new file mode 100644
index 0000000..6132c97
--- /dev/null
+++ b/commons/jzlib/pom.xml
@@ -0,0 +1,52 @@
+<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>
+
+    <parent>
+        <groupId>org.apache.felix.commons</groupId>
+        <artifactId>build</artifactId>
+        <version>0.9.0-incubator-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.apache.felix.commons</groupId>
+    <artifactId>jzlib-osgi</artifactId>
+    <version>1.0.7</version>
+    <packaging>bundle</packaging>
+
+    <name>${pom.artifactId} bundle</name>
+    <description>
+        This bundle simply wraps jzlib-${pom.version}.jar.
+    </description>
+
+    <organization> 
+        <name>Apache Felix Project</name> 
+        <url>http://incubator.apache.org/felix/</url> 
+    </organization>
+
+    <dependencies>
+        <dependency>
+            <groupId>com.jcraft</groupId>
+            <artifactId>jzlib</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+                        <Export-Package>!META-INF.*,*</Export-Package>
+                        <Import-Package>!*</Import-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
diff --git a/commons/pom.xml b/commons/pom.xml
index 900be1e..3af8390 100644
--- a/commons/pom.xml
+++ b/commons/pom.xml
@@ -17,14 +17,11 @@
     </description>
 
     <modules>
-        <!--
         <module>antlr</module>
-        <module>commons-collections</module>
-        <module>jzlib</module>
-        -->
         <module>cglib</module>
         <module>commons-beanutils</module>
         <module>commons-codec</module>
+        <module>commons-collections</module>
         <module>commons-configuration</module>
         <module>commons-digester</module>
         <module>commons-el</module>
@@ -32,6 +29,7 @@
         <module>commons-httpclient</module>
         <module>commons-io</module>
         <module>commons-lang</module>
+        <module>jzlib</module>
     </modules>
 
 </project>