Bazel build for STC runs

Change-Id: I75806c0cb5b71402b7e3519a84498f8e05a9cf8a
diff --git a/apps/pathpainter/BUILD b/apps/pathpainter/BUILD
new file mode 100644
index 0000000..3da6a0e
--- /dev/null
+++ b/apps/pathpainter/BUILD
@@ -0,0 +1,17 @@
+COMPILE_DEPS = CORE_DEPS + JACKSON
+
+osgi_jar_with_tests(
+    resources = glob(["src/main/resources/**"]),
+    resources_root = "src/main/resources",
+    deps = COMPILE_DEPS,
+)
+
+onos_app(
+    category = "GUI",
+    description = "Extends the GUI topology view by adding an overlay that allows the operator " +
+                  "to visualize topology paths using various forms of path-finding algorithms such as " +
+                  "the Dijkstra shortest path using default link metric (ONOS default), using geographic " +
+                  "distances, disjoint paths, etc.",
+    title = "Path Visualization",
+    url = "http://onosproject.org",
+)