Additional bazel build files for apps
Change-Id: If3f31139022b5657e4a7b8a33871e4eba0da286e
diff --git a/apps/reactive-routing/BUILD b/apps/reactive-routing/BUILD
new file mode 100644
index 0000000..aca004f
--- /dev/null
+++ b/apps/reactive-routing/BUILD
@@ -0,0 +1,23 @@
+COMPILE_DEPS = CORE_DEPS + JACKSON + [
+ "@concurrent_trees//jar",
+ "//incubator/api:onos-incubator-api",
+ "//apps/routing-api:onos-apps-routing-api",
+ "//apps/intentsync:onos-apps-intentsync",
+ "//apps/route-service/api:onos-apps-route-service-api",
+]
+
+osgi_jar(
+ deps = COMPILE_DEPS,
+)
+
+onos_app(
+ category = "Traffic Engineering",
+ description = "SDN-IP reactive routing application.",
+ required_apps = [
+ "org.onosproject.intentsynchronizer",
+ "org.onosproject.sdnip",
+ "org.onosproject.route-service",
+ ],
+ title = "SDN-IP Reactive Routing",
+ url = "http://onosproject.org",
+)