Start on implementation of apps with multiple included bundles

Change-Id: I8fc8474d5f2ff1b45e0dccfbe3fc20e27cc9000b
diff --git a/apps/mcast/cli/BUILD b/apps/mcast/cli/BUILD
new file mode 100644
index 0000000..53d4c2c
--- /dev/null
+++ b/apps/mcast/cli/BUILD
@@ -0,0 +1,13 @@
+COMPILE_DEPS = CORE_DEPS + [
+    '@org_apache_karaf_shell_console//jar',
+    '@javax_ws_rs_api//jar',
+    '//cli:onos-cli',
+    '//utils/rest:onlab-rest',
+    '//core/store/serializers:onos-core-serializers',
+    '//apps/mcast/api:onos-apps-mcast-api',
+]
+
+osgi_jar(
+    deps = COMPILE_DEPS,
+    import_packages = '*,org.onosproject.cli.net',
+)