FELIX-20 Implement Metatype Service (Initial Checkin)

git-svn-id: https://svn.apache.org/repos/asf/incubator/felix/trunk@527597 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/metatype/pom.xml b/metatype/pom.xml
new file mode 100644
index 0000000..c0e2eb1
--- /dev/null
+++ b/metatype/pom.xml
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>felix</artifactId>
+        <version>0.9.0-incubator-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>org.apache.felix.metatype</artifactId>
+    <packaging>bundle</packaging>
+
+    <name>Apache Felix Metatype Service</name>
+    <description>
+        Implementation of the OSGi Metatype Service Specification 1.1
+    </description>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>org.osgi.core</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>org.osgi.compendium</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>net.sf.kxml</groupId>
+            <artifactId>kxml2</artifactId>
+            <version>2.2.2</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>0.9.0-incubator-SNAPSHOT</version>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Bundle-Category>osgi</Bundle-Category>
+                        <Export-Package>
+                            org.apache.felix.metatype,
+                            org.osgi.service.metatype; version=1.1
+                        </Export-Package>
+                        <Private-Package>
+                            org.apache.felix.metatype.internal,
+                            org.apache.felix.metatype.internal.l10n,
+                            org.kxml2.io,
+                            org.xmlpull.v1
+                        </Private-Package>
+                        <Bundle-Activator>
+                            org.apache.felix.metatype.internal.Activator
+                        </Bundle-Activator>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>