Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
| 3 | '//lib:org.apache.karaf.shell.console', |
| 4 | '//lib:metrics-influxdb', |
| 5 | '//lib:influxdb-java', |
| 6 | '//cli:onos-cli', |
| 7 | ] |
| 8 | |
Ray Milkey | f9a7697 | 2016-04-12 09:47:12 -0700 | [diff] [blame] | 9 | EXCLUDED_BUNDLES = [ |
| 10 | '//lib:metrics-influxdb', |
| 11 | '//lib:influxdb-java', |
| 12 | ] |
| 13 | |
Ray Milkey | 4e5139b | 2016-04-27 15:50:43 -0700 | [diff] [blame] | 14 | BUNDLES = [ |
| 15 | '//lib:commons-codec', |
| 16 | ] |
| 17 | |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 18 | TEST_DEPS = [ |
Ray Milkey | 7c25182 | 2016-04-06 17:38:25 -0700 | [diff] [blame] | 19 | '//lib:TEST_ADAPTERS', |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 20 | ] |
| 21 | |
Ray Milkey | f9a7697 | 2016-04-12 09:47:12 -0700 | [diff] [blame] | 22 | osgi_jar_with_tests ( |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 23 | deps = COMPILE_DEPS, |
Ray Milkey | f9a7697 | 2016-04-12 09:47:12 -0700 | [diff] [blame] | 24 | test_deps = TEST_DEPS, |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 25 | ) |
| 26 | |
Ray Milkey | f9a7697 | 2016-04-12 09:47:12 -0700 | [diff] [blame] | 27 | onos_app ( |
| 28 | title = 'InfluxDB Report and Query App', |
| 29 | category = 'Monitoring', |
| 30 | url = 'http://onosproject.org', |
| 31 | description = 'Performance metric service reporter and retriever for influxDB.', |
Ray Milkey | 4e5139b | 2016-04-27 15:50:43 -0700 | [diff] [blame] | 32 | included_bundles = BUNDLES, |
Ray Milkey | f9a7697 | 2016-04-12 09:47:12 -0700 | [diff] [blame] | 33 | excluded_bundles = EXCLUDED_BUNDLES, |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 34 | ) |