Imported the initial version of the device manager code, as donated by Dennis Geurts, into the repository. Made some minor modifications to the pom.xml, but otherwise it's exactly the ZIP attached to FELIX-10.

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@752659 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/deviceaccess/pom.xml b/deviceaccess/pom.xml
new file mode 100644
index 0000000..aeb1723
--- /dev/null
+++ b/deviceaccess/pom.xml
@@ -0,0 +1,89 @@
+<?xml version="1.0" encoding="UTF-8"?>

+<!--

+ Licensed to the Apache Software Foundation (ASF) under one

+ or more contributor license agreements.  See the NOTICE file

+ distributed with this work for additional information

+ regarding copyright ownership.  The ASF licenses this file

+ to you under the Apache License, Version 2.0 (the

+ "License"); you may not use this file except in compliance

+ with the License.  You may obtain a copy of the License at

+

+    http://www.apache.org/licenses/LICENSE-2.0

+

+ Unless required by applicable law or agreed to in writing,

+ software distributed under the License is distributed on an

+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY

+ KIND, either express or implied.  See the License for the

+ specific language governing permissions and limitations

+ under the License.

+-->

+<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</groupId>

+        <artifactId>felix</artifactId>

+        <version>1.0.2</version>

+        <relativePath>../pom/pom.xml</relativePath>

+    </parent>

+

+    <artifactId>org.apache.felix.devicemanager</artifactId>

+    <version>0.9.0-SNAPSHOT</version>

+    <packaging>bundle</packaging>

+

+    <name>Apache Felix Device Manager</name>

+    <description>

+        Implementation of the OSGi Device Access Specification 1.1

+    </description>

+  <dependencies>

+    <dependency>

+      <groupId>${pom.groupId}</groupId>

+      <artifactId>org.osgi.core</artifactId>

+      <version>1.0.0</version>

+      <scope>provided</scope>

+    </dependency>

+    <dependency>

+      <groupId>${pom.groupId}</groupId>

+      <artifactId>org.osgi.compendium</artifactId>

+      <version>1.0.0</version>

+      <scope>provided</scope>

+    </dependency>

+    <dependency>

+      <groupId>${pom.groupId}</groupId>

+      <artifactId>org.apache.felix.dependencymanager</artifactId>

+      <version>2.0.1-SNAPSHOT</version>

+      <scope>provided</scope>

+    </dependency>

+    </dependencies>

+  <build>

+    <plugins>

+      <plugin>

+        <artifactId>maven-surefire-plugin</artifactId>

+        <version>2.3</version>

+      </plugin>

+      <plugin>

+        <groupId>org.apache.felix</groupId>

+        <artifactId>maven-bundle-plugin</artifactId>

+        <version>1.4.0</version>

+        <extensions>true</extensions>

+        <configuration>

+          <instructions>

+            <Bundle-SymbolicName>org.apache.felix.das</Bundle-SymbolicName>

+            <Bundle-Name>Apache Felix Device Manager</Bundle-Name>

+            <Bundle-Description>A bundle that provides a run-time device manager.</Bundle-Description>

+            <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>

+            <Bundle-Activator>org.apache.felix.das.Activator</Bundle-Activator>

+            <Private-Package>org.apache.felix.das, org.apache.felix.das.util</Private-Package>

+          </instructions>

+        </configuration>

+      </plugin>

+      <plugin>

+          <groupId>org.apache.maven.plugins</groupId>

+          <artifactId>maven-compiler-plugin</artifactId>

+          <configuration>

+             <source>1.5</source>

+             <target>1.5</target>

+        </configuration>

+      </plugin>

+    </plugins>

+  </build>

+</project>