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