Additional bazel build files for apps

Change-Id: If3f31139022b5657e4a7b8a33871e4eba0da286e
diff --git a/apps/events/BUILD b/apps/events/BUILD
new file mode 100644
index 0000000..d5d9ebf
--- /dev/null
+++ b/apps/events/BUILD
@@ -0,0 +1,16 @@
+COMPILE_DEPS = CORE_DEPS + JACKSON + CLI
+
+osgi_jar_with_tests(
+    resources = glob(["src/main/resources/**"]),
+    resources_root = "src/main/resources",
+    deps = COMPILE_DEPS,
+)
+
+onos_app(
+    category = "Test Utility",
+    description = "Allows recording and tracking of otherwise ephemeral ONOS core events. " +
+                  "It is primarily aimed for supporting various system tests and to assure that expected " +
+                  "events are raised and broadcast to applications that have requested them.",
+    title = "Event History",
+    url = "http://onosproject.org",
+)