blob: a2ddcd9323b2fda585564d756d0e866961ab47e6 [file] [log] [blame]
Mohammad Shahid0cf9c0e2017-08-09 15:58:19 +05301COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//cli:onos-cli',
4 '//lib:httpclient-osgi',
5 '//lib:httpcore-osgi',
6 '//lib:org.apache.httpcomponents.httpasyncclient-osgi',
7 '//lib:org.apache.httpcomponents.httpcore-nio',
8 '//lib:org.apache.karaf.shell.console',
9 '//lib:org.apache.karaf.jaas',
10
11]
12TEST_DEPS = [
13 '//lib:TEST',
14]
15
16BUNDLES = [
17 ':onos-apps-gluon',
18 '//lib:httpclient-osgi',
19 '//lib:httpcore-osgi',
20 '//lib:org.apache.httpcomponents.httpasyncclient-osgi',
21 '//lib:org.apache.httpcomponents.httpcore-nio',
22]
23
24osgi_jar_with_tests (
25 deps = COMPILE_DEPS,
26 test_deps = TEST_DEPS,
27)
28
29onos_app (
30 app_name = 'org.onosproject.gluon',
31 title = 'Gluon Shim Application',
32 category = 'Monitoring',
33 url = 'http://onosproject.org',
34 included_bundles = BUNDLES,
35 description = 'To fetch data from Gluon Server over Http session.',
36)