Added parent POM to the Felix Commons subproject.
Added wrapper POMs to the Felix Commons subproject to resolve:
o  FELIX-205 cblib 2.0.2 wrapping
o  FELIX-206 commons-beanutils 1.7.0 wrapping
o  FELIX-207 commons-codec 1.2 wrapping
o  FELIX-208 commons-configuration 1.3 wrapping
o  FELIX-209 commons-digester 1.8 wrapping
o  FELIX-210 commons-el 1.0 wrapping
o  FELIX-211 commons-fileupload 1.1.1 wrapping
o  FELIX-212 commons-httpclient 3.0.1 wrapping
o  FELIX-213 commons-io 1.3 wrapping

git-svn-id: https://svn.apache.org/repos/asf/incubator/felix/trunk@510316 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/commons/cblib/pom.xml b/commons/cblib/pom.xml
new file mode 100644
index 0000000..1e059cd
--- /dev/null
+++ b/commons/cblib/pom.xml
@@ -0,0 +1,56 @@
+<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>cglib-full-osgi</artifactId>
+    <version>2.0.2</version>
+    <packaging>bundle</packaging>
+
+    <name>${pom.artifactId} bundle</name>
+    <description>
+        This bundle simply wraps cglib-full-${pom.version}.jar.
+    </description>
+    
+    <organization> 
+        <name>Apache Felix Project</name> 
+        <url>http://incubator.apache.org/felix/</url> 
+    </organization>
+    
+    <dependencies>
+        <dependency>
+            <groupId>cglib</groupId>
+            <artifactId>cglib-full</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>
+                        <DynamicImport-Package>
+                            org.apache.tools.ant,org.apache.tools.ant.types,org.codehaus.aspectwerkz.hook,org.objectweb.asm.util
+                        </DynamicImport-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
diff --git a/commons/commons-beanutils/pom.xml b/commons/commons-beanutils/pom.xml
new file mode 100644
index 0000000..da7516e
--- /dev/null
+++ b/commons/commons-beanutils/pom.xml
@@ -0,0 +1,60 @@
+<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-beanutils-osgi</artifactId>
+    <version>1.7.0</version>
+    <packaging>bundle</packaging>
+
+    <name>${pom.artifactId} bundle</name>
+    <description>
+        This bundle simply wraps commons-beanutils-${pom.version}.jar.
+    </description>
+    
+    <organization> 
+        <name>Apache Felix Project</name> 
+        <url>http://incubator.apache.org/felix/</url> 
+    </organization>
+    
+    <dependencies>
+        <dependency>
+            <groupId>commons-beanutils</groupId>
+            <artifactId>commons-beanutils</artifactId>
+            <version>${pom.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>commons-logging</groupId>
+                    <artifactId>commons-logging</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                            !org.apache.commons.collections,
+                            *
+                        </Export-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
diff --git a/commons/commons-codec/pom.xml b/commons/commons-codec/pom.xml
new file mode 100644
index 0000000..b9896f5
--- /dev/null
+++ b/commons/commons-codec/pom.xml
@@ -0,0 +1,53 @@
+<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-codec-osgi</artifactId>
+    <version>1.2</version>
+    <packaging>bundle</packaging>
+
+    <name>${pom.artifactId} bundle</name>
+    <description>
+        This bundle simply wraps commons-codec-${pom.version}.jar.
+    </description>
+    
+    <organization> 
+        <name>Apache Felix Project</name> 
+        <url>http://incubator.apache.org/felix/</url> 
+    </organization>
+    
+    <dependencies>
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</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>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
diff --git a/commons/commons-configuration/pom.xml b/commons/commons-configuration/pom.xml
new file mode 100644
index 0000000..f3c8007
--- /dev/null
+++ b/commons/commons-configuration/pom.xml
@@ -0,0 +1,103 @@
+<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-configuration-osgi</artifactId>
+    <version>1.3</version>
+    <packaging>bundle</packaging>
+
+    <name>${pom.artifactId} bundle</name>
+    <description>
+        This bundle simply wraps commons-configuration-${pom.version}.jar.
+    </description>
+    
+    <organization> 
+        <name>Apache Felix Project</name> 
+        <url>http://incubator.apache.org/felix/</url> 
+    </organization>
+    
+    <dependencies>
+        <dependency>
+            <groupId>commons-configuration</groupId>
+            <artifactId>commons-configuration</artifactId>
+            <version>${pom.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>commons-beanutils</groupId>
+                    <artifactId>commons-beanutils-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>commons-codec</groupId>
+                    <artifactId>commons-codec</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>commons-collections</groupId>
+                    <artifactId>commons-collections</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>commons-digester</groupId>
+                    <artifactId>commons-digester</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>commons-jxpath</groupId>
+                    <artifactId>commons-jxpath</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>commons-lang</groupId>
+                    <artifactId>commons-lang</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>commons-logging</groupId>
+                    <artifactId>commons-logging-api</artifactId>
+                </exclusion>
+
+                <exclusion>
+                    <groupId>xerces</groupId>
+                    <artifactId>xerces</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>xalan</groupId>
+                    <artifactId>xalan</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>xml-apis</groupId>
+                    <artifactId>xml-apis</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>servletapi</groupId>
+                    <artifactId>servletapi</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                        <DynamicImport-Package>
+                            javax.naming,javax.servlet,javax.sql,javax.xml.parsers,javax.xml.transform,javax.xml.transform.dom,javax.xml.transform.stream,org.apache.commons.beanutils,org.apache.commons.codec.binary,org.apache.commons.digester,org.apache.commons.digester.substitution,org.apache.commons.digester.xmlrules,org.apache.commons.jxpath,org.apache.commons.jxpath.ri,org.apache.commons.jxpath.ri.compiler,org.apache.commons.jxpath.ri.model,org.w3c.dom,org.xml.sax,org.xml.sax.helpers
+                        </DynamicImport-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
diff --git a/commons/commons-digester/pom.xml b/commons/commons-digester/pom.xml
new file mode 100644
index 0000000..81ddfb2
--- /dev/null
+++ b/commons/commons-digester/pom.xml
@@ -0,0 +1,74 @@
+<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-digester-osgi</artifactId>
+    <version>1.8</version>
+    <packaging>bundle</packaging>
+
+    <name>${pom.artifactId} bundle</name>
+    <description>
+        This bundle simply wraps commons-digester-${pom.version}.jar.
+    </description>
+    
+    <organization> 
+        <name>Apache Felix Project</name> 
+        <url>http://incubator.apache.org/felix/</url> 
+    </organization>
+    
+    <dependencies>
+        <dependency>
+            <groupId>commons-digester</groupId>
+            <artifactId>commons-digester</artifactId>
+            <version>${pom.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>commons-beanutils</groupId>
+                    <artifactId>commons-beanutils</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>commons-logging</groupId>
+                    <artifactId>commons-logging</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>commons-collections</groupId>
+                    <artifactId>commons-collections</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>xml-apis</groupId>
+                    <artifactId>xml-apis</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                        <DynamicImport-Package>
+                            org.apache.commons.logging.impl
+                        </DynamicImport-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
diff --git a/commons/commons-el/pom.xml b/commons/commons-el/pom.xml
new file mode 100644
index 0000000..5713f5a
--- /dev/null
+++ b/commons/commons-el/pom.xml
@@ -0,0 +1,59 @@
+<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-el-osgi</artifactId>
+    <version>1.0</version>
+    <packaging>bundle</packaging>
+
+    <name>${pom.artifactId} bundle</name>
+    <description>
+        This bundle simply wraps commons-el-${pom.version}.jar.
+    </description>
+    
+    <organization> 
+        <name>Apache Felix Project</name> 
+        <url>http://incubator.apache.org/felix/</url> 
+    </organization>
+    
+    <dependencies>
+        <dependency>
+            <groupId>commons-el</groupId>
+            <artifactId>commons-el</artifactId>
+            <version>${pom.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>commons-logging</groupId>
+                    <artifactId>commons-logging</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
diff --git a/commons/commons-fileupload/pom.xml b/commons/commons-fileupload/pom.xml
new file mode 100644
index 0000000..6a69684
--- /dev/null
+++ b/commons/commons-fileupload/pom.xml
@@ -0,0 +1,62 @@
+<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-fileupload-osgi</artifactId>
+    <version>1.1.1</version>
+    <packaging>bundle</packaging>
+
+    <name>${pom.artifactId} bundle</name>
+    <description>
+        This bundle simply wraps commons-fileupload-${pom.version}.jar.
+    </description>
+    
+    <organization> 
+        <name>Apache Felix Project</name> 
+        <url>http://incubator.apache.org/felix/</url> 
+    </organization>
+    
+    <dependencies>
+        <dependency>
+            <groupId>commons-fileupload</groupId>
+            <artifactId>commons-fileupload</artifactId>
+            <version>${pom.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>commons-io</groupId>
+                    <artifactId>commons-io</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                        <DynamicImport-Package>
+                            javax.portlet
+                        </DynamicImport-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
diff --git a/commons/commons-httpclient/pom.xml b/commons/commons-httpclient/pom.xml
new file mode 100644
index 0000000..aa174c4
--- /dev/null
+++ b/commons/commons-httpclient/pom.xml
@@ -0,0 +1,67 @@
+<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-httpclient-osgi</artifactId>
+    <version>3.0.1</version>
+    <packaging>bundle</packaging>
+
+    <name>${pom.artifactId} bundle</name>
+    <description>
+        This bundle simply wraps commons-httpclient-${pom.version}.jar.
+    </description>
+    
+    <organization> 
+        <name>Apache Felix Project</name> 
+        <url>http://incubator.apache.org/felix/</url> 
+    </organization>
+    
+    <dependencies>
+        <dependency>
+            <groupId>commons-httpclient</groupId>
+            <artifactId>commons-httpclient</artifactId>
+            <version>${pom.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>commons-codec</groupId>
+                    <artifactId>commons-codec</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>commons-logging</groupId>
+                    <artifactId>commons-logging</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>junit</groupId>
+                    <artifactId>junit</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
diff --git a/commons/commons-io/pom.xml b/commons/commons-io/pom.xml
new file mode 100644
index 0000000..1745488
--- /dev/null
+++ b/commons/commons-io/pom.xml
@@ -0,0 +1,53 @@
+<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-io-osgi</artifactId>
+    <version>1.3</version>
+    <packaging>bundle</packaging>
+
+    <name>${pom.artifactId} bundle</name>
+    <description>
+        This bundle simply wraps commons-io-${pom.version}.jar.
+    </description>
+    
+    <organization> 
+        <name>Apache Felix Project</name> 
+        <url>http://incubator.apache.org/felix/</url> 
+    </organization>
+    
+    <dependencies>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</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>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
diff --git a/commons/pom.xml b/commons/pom.xml
new file mode 100644
index 0000000..b588773
--- /dev/null
+++ b/commons/pom.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<project>
+
+    <parent>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>felix</artifactId>
+        <version>0.9.0-incubator-SNAPSHOT</version>
+    </parent>
+
+    <modelVersion>4.0.0</modelVersion>
+    <packaging>pom</packaging>
+    <name>Apache Felix Commons: Build</name>
+    <groupId>org.apache.felix.commons</groupId>
+    <artifactId>build</artifactId>
+    <description>
+        These subprojects wrap common third-party jars as OSGi bundles.
+    </description>
+
+    <modules>
+        <!--
+        <module>antlr</module>
+        <module>commons-collections</module>
+        <module>commons-lang</module>
+        <module>jzlib</module>
+        -->
+        <module>cblib</module>
+        <module>commons-beanutils</module>
+        <module>commons-codec</module>
+        <module>commons-configuration</module>
+        <module>commons-digester</module>
+        <module>commons-el</module>
+        <module>commons-fileupload</module>
+        <module>commons-httpclient</module>
+        <module>commons-io</module>
+    </modules>
+
+</project>