Build providers using bazel

Change-Id: I7d4ebcfb1d593e10aa93f0a4f7111680ed66a7e7
diff --git a/apps/pce/pceweb/BUILD b/apps/pce/pceweb/BUILD
new file mode 100644
index 0000000..853f9b3
--- /dev/null
+++ b/apps/pce/pceweb/BUILD
@@ -0,0 +1,17 @@
+COMPILE_DEPS = CORE_DEPS + JACKSON + [
+    "@org_apache_karaf_shell_console//jar",
+    "//apps/pce/app:onos-apps-pce-app",
+    "//cli:onos-cli",
+    "//incubator/api:onos-incubator-api",
+]
+
+osgi_jar_with_tests(
+    deps = COMPILE_DEPS,
+)
+
+onos_app(
+    category = "Utility",
+    description = "Allows the user to visualize different types of paths between network entities",
+    title = "PCE REST API",
+    url = "http://onosproject.org",
+)