Additional bazel build files for apps
Change-Id: If3f31139022b5657e4a7b8a33871e4eba0da286e
diff --git a/apps/graphitemetrics/BUILD b/apps/graphitemetrics/BUILD
new file mode 100644
index 0000000..a7ca902
--- /dev/null
+++ b/apps/graphitemetrics/BUILD
@@ -0,0 +1,21 @@
+COMPILE_DEPS = CORE_DEPS + METRICS + [
+ "@gmetric4j//jar",
+ "@metrics_graphite//jar",
+]
+
+EXCLUDED_BUNDLES = [
+ "@gmetric4j//jar",
+ "@metrics_graphite//jar",
+]
+
+osgi_jar_with_tests(
+ deps = COMPILE_DEPS,
+)
+
+onos_app(
+ category = "Monitoring",
+ description = "Performance metric service reporter and retriever for graphite",
+ excluded_bundles = EXCLUDED_BUNDLES,
+ title = "Graphite Report and Query",
+ url = "http://onosproject.org",
+)