Start on implementation of apps with multiple included bundles
Change-Id: I8fc8474d5f2ff1b45e0dccfbe3fc20e27cc9000b
diff --git a/apps/mcast/web/BUILD b/apps/mcast/web/BUILD
new file mode 100644
index 0000000..7835ea3
--- /dev/null
+++ b/apps/mcast/web/BUILD
@@ -0,0 +1,14 @@
+COMPILE_DEPS = CORE_DEPS + JACKSON + [
+ '@javax_ws_rs_api//jar',
+ '//utils/rest:onlab-rest',
+ '//apps/mcast/api:onos-apps-mcast-api'
+]
+
+osgi_jar(
+ deps = COMPILE_DEPS,
+ web_context = '/onos/mcast',
+ api_title = 'Multicast API',
+ api_version = '1.0',
+ api_description = 'REST API for Multicast',
+ api_package = 'org.onosproject.mcast.web',
+)