Updating yang-tools pom for standalone project

Change-Id: I71982c9c3a9fe2d9ef6004bca55399a5c0d9c7f8
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..c5aefb5
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,15 @@
+*~
+*.class
+.classpath
+.project
+.pydevproject
+.settings
+.javacp*
+.checkstyle
+target
+*.iml
+*.pyc
+dependency-reduced-pom.xml
+.idea
+*.DS_Store
+/bin/
diff --git a/.gitreview b/.gitreview
new file mode 100644
index 0000000..b9f570f
--- /dev/null
+++ b/.gitreview
@@ -0,0 +1,6 @@
+[gerrit]
+host=gerrit.onosproject.org
+port=29418
+project=onos-yang-tools.git
+defaultremote=origin
+defaultbranch=master
diff --git a/pom.xml b/pom.xml
index 44d8da5..4a4fae9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -19,7 +19,7 @@
 
     <parent>
         <groupId>org.onosproject</groupId>
-        <artifactId>onlab-utils</artifactId>
+        <artifactId>onos-dependencies</artifactId>
         <version>1.7.0-SNAPSHOT</version>
     </parent>
 
@@ -36,4 +36,25 @@
         <module>datamodel</module>
         <module>plugin</module>
     </modules>
+
+    <dependencies>
+        <dependency>
+            <groupId>com.google.guava</groupId>
+            <artifactId>guava</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.compendium</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
 </project>