ONOS-6074 Dynamic Config integration with Yang Runtime, compiler & model

Change-Id: I6c95bde6999c7b1536aa339dadd7274fc058291d
diff --git a/apps/yang/BUCK b/apps/yang/BUCK
new file mode 100644
index 0000000..8c0b321
--- /dev/null
+++ b/apps/yang/BUCK
@@ -0,0 +1,24 @@
+COMPILE_DEPS = [
+    '//lib:CORE_DEPS',
+    '//lib:onos-yang-model',
+    '//lib:onos-yang-compiler-api',
+    '//lib:onos-yang-runtime',
+]
+
+BUNDLES = [
+    '//lib:onos-yang-model',
+    '//lib:onos-yang-compiler-api',
+    '//lib:onos-yang-runtime',
+]
+
+osgi_jar (
+    deps = COMPILE_DEPS,
+)
+
+onos_app (
+    title = 'ONOS YANG Extension',
+    category = 'Utility',
+    url = 'http://onosproject.org',
+    description = 'Base application to bring in the YANG libraries and assemble them for other apps to use.',
+    included_bundles = BUNDLES,
+)
\ No newline at end of file