ONOS-5449 Implemented skeleton of OFAgent application

Change-Id: Ie6c719872549a004471e466a43a2b531bc48b231
diff --git a/apps/ofagent/BUCK b/apps/ofagent/BUCK
new file mode 100644
index 0000000..eeb3aba
--- /dev/null
+++ b/apps/ofagent/BUCK
@@ -0,0 +1,25 @@
+COMPILE_DEPS = [
+    '//lib:CORE_DEPS',
+    '//lib:netty-transport',
+    '//lib:netty-buffer',
+    '//lib:netty-codec',
+    '//lib:netty-handler',
+    '//incubator/api:onos-incubator-api',
+    '//lib:openflowj-3.0',
+]
+
+EXCLUDED_BUNDLES = [
+    '//lib:openflowj-3.0',
+]
+
+osgi_jar_with_tests (
+    deps = COMPILE_DEPS,
+)
+
+onos_app (
+    title = 'OpenFlow Agent App',
+    category = 'Traffic Steering',
+    url = 'http://onosproject.org',
+    description = 'OpenFlow agent application for virtualization subsystem.',
+    excluded_bundles = EXCLUDED_BUNDLES
+)