Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
Ray Milkey | 446f446 | 2017-08-17 15:36:01 -0700 | [diff] [blame] | 3 | '//lib:NETTY', |
| 4 | '//lib:JACKSON', |
Ray Milkey | aeb0079 | 2016-04-20 16:15:21 -0700 | [diff] [blame] | 5 | '//providers/lldpcommon:onos-providers-lldpcommon', |
Yuta HIGUCHI | ea7efa4 | 2017-02-16 20:34:25 -0800 | [diff] [blame] | 6 | '//lib:org.apache.karaf.shell.console', |
| 7 | '//cli:onos-cli', |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 8 | ] |
| 9 | |
| 10 | TEST_DEPS = [ |
Ray Milkey | 7c25182 | 2016-04-06 17:38:25 -0700 | [diff] [blame] | 11 | '//lib:TEST_ADAPTERS', |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 12 | ] |
| 13 | |
Ray Milkey | aeb0079 | 2016-04-20 16:15:21 -0700 | [diff] [blame] | 14 | BUNDLES = [ |
| 15 | '//providers/lldpcommon:onos-providers-lldpcommon', |
| 16 | '//providers/lldp:onos-providers-lldp', |
| 17 | ] |
| 18 | |
| 19 | osgi_jar_with_tests ( |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 20 | deps = COMPILE_DEPS, |
Ray Milkey | aeb0079 | 2016-04-20 16:15:21 -0700 | [diff] [blame] | 21 | test_deps = TEST_DEPS, |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 22 | ) |
| 23 | |
Ray Milkey | aeb0079 | 2016-04-20 16:15:21 -0700 | [diff] [blame] | 24 | onos_app ( |
Charles Chan | c314294 | 2016-05-05 17:42:14 -0700 | [diff] [blame] | 25 | app_name = 'org.onosproject.lldpprovider', |
Ray Milkey | aeb0079 | 2016-04-20 16:15:21 -0700 | [diff] [blame] | 26 | title = 'LLDP Link Provider', |
| 27 | category = 'Provider', |
| 28 | url = 'http://onosproject.org', |
Thomas Vachuska | b002968 | 2017-08-23 17:55:53 -0700 | [diff] [blame] | 29 | description = 'Provides link discovery to the ONOS core by eavesdropping on the LLDP control packets.', |
Ray Milkey | aeb0079 | 2016-04-20 16:15:21 -0700 | [diff] [blame] | 30 | included_bundles = BUNDLES, |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 31 | ) |
Ray Milkey | aeb0079 | 2016-04-20 16:15:21 -0700 | [diff] [blame] | 32 | |