Build providers using bazel

Change-Id: I7d4ebcfb1d593e10aa93f0a4f7111680ed66a7e7
diff --git a/apps/pce/bandwidthmgmt/BUILD b/apps/pce/bandwidthmgmt/BUILD
new file mode 100644
index 0000000..755f9b2
--- /dev/null
+++ b/apps/pce/bandwidthmgmt/BUILD
@@ -0,0 +1,16 @@
+COMPILE_DEPS = CORE_DEPS + KRYO + [
+    "//core/store/serializers:onos-core-serializers",
+    "//apps/pcep-api:onos-apps-pcep-api",
+]
+
+osgi_jar_with_tests(
+    deps = COMPILE_DEPS,
+)
+
+onos_app(
+    app_name = "org.onosproject.bandwidthmgmt",
+    category = "default",
+    description = "PCE Bandwidth Management.",
+    title = "PCE Bandwidth Management",
+    url = "http://onosproject.org",
+)