Adding Gluon App code to support EVPN
Change-Id: I24aee104482a166e412e5e7b42ea1dbf518d51c6
diff --git a/apps/gluon/BUCK b/apps/gluon/BUCK
new file mode 100755
index 0000000..a2ddcd9
--- /dev/null
+++ b/apps/gluon/BUCK
@@ -0,0 +1,36 @@
+COMPILE_DEPS = [
+ '//lib:CORE_DEPS',
+ '//cli:onos-cli',
+ '//lib:httpclient-osgi',
+ '//lib:httpcore-osgi',
+ '//lib:org.apache.httpcomponents.httpasyncclient-osgi',
+ '//lib:org.apache.httpcomponents.httpcore-nio',
+ '//lib:org.apache.karaf.shell.console',
+ '//lib:org.apache.karaf.jaas',
+
+]
+TEST_DEPS = [
+ '//lib:TEST',
+]
+
+BUNDLES = [
+ ':onos-apps-gluon',
+ '//lib:httpclient-osgi',
+ '//lib:httpcore-osgi',
+ '//lib:org.apache.httpcomponents.httpasyncclient-osgi',
+ '//lib:org.apache.httpcomponents.httpcore-nio',
+]
+
+osgi_jar_with_tests (
+ deps = COMPILE_DEPS,
+ test_deps = TEST_DEPS,
+)
+
+onos_app (
+ app_name = 'org.onosproject.gluon',
+ title = 'Gluon Shim Application',
+ category = 'Monitoring',
+ url = 'http://onosproject.org',
+ included_bundles = BUNDLES,
+ description = 'To fetch data from Gluon Server over Http session.',
+)
\ No newline at end of file