blob: 2b643ebdeeb2e98bfebf11b13541d7e7905cfd87 [file] [log] [blame]
Ray Milkeyf80bbb22016-03-11 10:16:22 -08001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
Ray Milkey446f4462017-08-17 15:36:01 -07003 '//lib:NETTY',
Ray Milkeyaeb00792016-04-20 16:15:21 -07004 '//providers/lldpcommon:onos-providers-lldpcommon',
Ray Milkeyf80bbb22016-03-11 10:16:22 -08005]
6
7TEST_DEPS = [
Ray Milkey7c251822016-04-06 17:38:25 -07008 '//lib:TEST_ADAPTERS',
Ray Milkeyf80bbb22016-03-11 10:16:22 -08009]
10
Ray Milkeyaeb00792016-04-20 16:15:21 -070011BUNDLES = [
12 '//providers/lldpcommon:onos-providers-lldpcommon',
13 '//providers/netcfglinks:onos-providers-netcfglinks',
14]
15
16osgi_jar_with_tests (
Ray Milkeyf80bbb22016-03-11 10:16:22 -080017 deps = COMPILE_DEPS,
Ray Milkeyaeb00792016-04-20 16:15:21 -070018 test_deps = TEST_DEPS,
Ray Milkeyf80bbb22016-03-11 10:16:22 -080019)
20
Ray Milkeyaeb00792016-04-20 16:15:21 -070021onos_app (
Charles Chanc3142942016-05-05 17:42:14 -070022 app_name = 'org.onosproject.netcfglinksprovider',
Ray Milkeyaeb00792016-04-20 16:15:21 -070023 title = 'Network Config Link Provider',
24 category = 'Provider',
25 url = 'http://onosproject.org',
Thomas Vachuskab0029682017-08-23 17:55:53 -070026 description = 'Allows operator to prescribe information about known infrastructure links and ' +
27 'their state using the network configuration subsystem. Such information takes precedence ' +
28 'over information discovered through other link discovery providers.',
Ray Milkeyaeb00792016-04-20 16:15:21 -070029 included_bundles = BUNDLES,
Ray Milkeyf80bbb22016-03-11 10:16:22 -080030)