Mohammad Shahid | 0cf9c0e | 2017-08-09 15:58:19 +0530 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
Ray Milkey | 446f446 | 2017-08-17 15:36:01 -0700 | [diff] [blame] | 3 | '//lib:JACKSON', |
Mohammad Shahid | 0cf9c0e | 2017-08-09 15:58:19 +0530 | [diff] [blame] | 4 | '//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 | ] |
| 13 | TEST_DEPS = [ |
| 14 | '//lib:TEST', |
| 15 | ] |
| 16 | |
| 17 | BUNDLES = [ |
| 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 | |
| 25 | osgi_jar_with_tests ( |
| 26 | deps = COMPILE_DEPS, |
| 27 | test_deps = TEST_DEPS, |
| 28 | ) |
| 29 | |
| 30 | onos_app ( |
| 31 | app_name = 'org.onosproject.gluon', |
Thomas Vachuska | b002968 | 2017-08-23 17:55:53 -0700 | [diff] [blame] | 32 | title = 'Gluon Shim', |
Mohammad Shahid | 0cf9c0e | 2017-08-09 15:58:19 +0530 | [diff] [blame] | 33 | category = 'Monitoring', |
| 34 | url = 'http://onosproject.org', |
| 35 | included_bundles = BUNDLES, |
| 36 | description = 'To fetch data from Gluon Server over Http session.', |
Ray Milkey | 446f446 | 2017-08-17 15:36:01 -0700 | [diff] [blame] | 37 | ) |