Additional bazel build files for apps
Change-Id: If3f31139022b5657e4a7b8a33871e4eba0da286e
diff --git a/apps/gluon/BUILD b/apps/gluon/BUILD
new file mode 100644
index 0000000..183f9cb
--- /dev/null
+++ b/apps/gluon/BUILD
@@ -0,0 +1,28 @@
+COMPILE_DEPS = CORE_DEPS + JACKSON + CLI + [
+ "@httpclient_osgi//jar",
+ "@httpcore_osgi//jar",
+ "@org_apache_httpcomponents_httpasyncclient_osgi//jar",
+ "@org_apache_httpcomponents_httpcore_nio//jar",
+ "@org_apache_karaf_jaas//jar",
+]
+
+BUNDLES = [
+ ":onos-apps-gluon",
+ "@httpclient_osgi//jar",
+ "@httpcore_osgi//jar",
+ "@org_apache_httpcomponents_httpasyncclient_osgi//jar",
+ "@org_apache_httpcomponents_httpcore_nio//jar",
+]
+
+osgi_jar_with_tests(
+ deps = COMPILE_DEPS,
+)
+
+onos_app(
+ app_name = "org.onosproject.gluon",
+ category = "Monitoring",
+ description = "To fetch data from Gluon Server over Http session.",
+ included_bundles = BUNDLES,
+ title = "Gluon Shim",
+ url = "http://onosproject.org",
+)