Added a shell of a openflow device provider and fixed features.
diff --git a/providers/pom.xml b/providers/pom.xml
index 1944c88..2cb0b96 100644
--- a/providers/pom.xml
+++ b/providers/pom.xml
@@ -26,11 +26,20 @@
             <artifactId>onos-api</artifactId>
             <version>${project.version}</version>
         </dependency>
+
         <dependency>
-            <groupId>org.onlab.onos</groupId>
-            <artifactId>onos-of-api</artifactId>
-            <version>${project.version}</version>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.scr.annotations</artifactId>
         </dependency>
     </dependencies>
 
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
 </project>