Additional bazel build files for apps
Change-Id: If3f31139022b5657e4a7b8a33871e4eba0da286e
diff --git a/apps/powermanagement/BUILD b/apps/powermanagement/BUILD
new file mode 100644
index 0000000..f364224
--- /dev/null
+++ b/apps/powermanagement/BUILD
@@ -0,0 +1,21 @@
+COMPILE_DEPS = CORE_DEPS + JACKSON + REST + [
+ "//core/store/serializers:onos-core-serializers",
+]
+
+osgi_jar_with_tests(
+ api_description = "REST API for Power Management",
+ api_package = "org.onosproject.powermanagement",
+ api_title = "Power Management API",
+ api_version = "1.0",
+ test_deps = TEST_REST,
+ web_context = "/onos/powermanagement",
+ deps = COMPILE_DEPS,
+)
+
+onos_app(
+ category = "Monitoring",
+ description = "This application provides northbound interfaces for monitoring and " +
+ "configuring power.",
+ title = "Power Management",
+ url = "http://onosproject.org",
+)