YANG runtime manager to register default serializers.

Change-Id: Ifddbc58b220c903eecc25b673f688b2d8a77ad2e
diff --git a/apps/yang/BUCK b/apps/yang/BUCK
index 7af28b0..85e557c 100644
--- a/apps/yang/BUCK
+++ b/apps/yang/BUCK
@@ -3,6 +3,10 @@
     '//lib:onos-yang-model',
     '//lib:onos-yang-compiler-api',
     '//lib:onos-yang-runtime',
+    '//lib:onos-yang-serializers-json',
+    '//lib:onos-yang-serializers-xml',
+    '//lib:onos-yang-serializers-utils',
+    '//lib:org.apache.servicemix.bundles.dom4j',
 ]
 
 BUNDLES = [
@@ -12,6 +16,13 @@
     '//lib:onos-yang-runtime',
 ]
 
+EXCLUDED_BUNDLES = [
+    '//lib:onos-yang-serializers-json',
+    '//lib:onos-yang-serializers-xml',
+    '//lib:onos-yang-serializers-utils',
+    '//lib:org.apache.servicemix.bundles.dom4j',
+]
+
 osgi_jar (
     deps = COMPILE_DEPS,
 )
@@ -22,4 +33,5 @@
     url = 'http://onosproject.org',
     description = 'Base application to bring in the YANG libraries and assemble them for other apps to use.',
     included_bundles = BUNDLES,
+    excluded_bundles = EXCLUDED_BUNDLES,
 )
\ No newline at end of file