Committed the initial version of the dependency manager.
Added a "pom.xml" but since I'm fairly new at maven, this was copied from other examples.
Changed the package name to o.a.f.dependencymanager.
Modified a couple of classes so the code compiles with Java 1.4 (but we want to go for the minimum execution environment ultimately).

git-svn-id: https://svn.apache.org/repos/asf/incubator/felix/trunk@388822 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/org.apache.felix.dependencymanager/pom.xml b/org.apache.felix.dependencymanager/pom.xml
new file mode 100644
index 0000000..a1f32c0
--- /dev/null
+++ b/org.apache.felix.dependencymanager/pom.xml
@@ -0,0 +1,44 @@
+<project>
+  <parent>
+    <groupId>org.apache.felix</groupId>
+    <artifactId>felix</artifactId>
+    <version>0.8.0-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <packaging>osgi-bundle</packaging>
+  <name>Apache Felix Dependency Manager</name>
+  <artifactId>org.apache.felix.dependencymanager</artifactId>
+  <dependencies>
+    <dependency>
+      <groupId>${pom.groupId}</groupId>
+      <artifactId>org.osgi</artifactId>
+      <version>${pom.version}</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix.plugins</groupId>
+        <artifactId>maven-osgi-plugin</artifactId>
+        <version>${pom.version}</version>
+        <extensions>true</extensions>
+        <configuration>
+          <osgiManifest>
+            <bundleName>Dependency Manager</bundleName>
+            <bundleVendor>Apache Software Foundation</bundleVendor>
+            <bundleDescription>
+              A bundle that provides a run-time service dependency manager.
+            </bundleDescription>
+            <importPackage>
+              org.osgi.framework
+            </importPackage>
+            <exportPackage>
+              org.apache.felix.dependencymanager
+            </exportPackage>
+          </osgiManifest>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>