blob: d1b3a5174482aad10f785f84b0814b105775912e [file] [log] [blame]
Ray Milkey18fb0812018-06-21 10:32:53 -07001COMPILE_DEPS = CORE_DEPS + NETTY + [
2 "//providers/lldpcommon:onos-providers-lldpcommon",
3]
4
5BUNDLES = [
6 "//providers/lldpcommon:onos-providers-lldpcommon",
7 "//providers/netcfglinks:onos-providers-netcfglinks",
8]
9
10osgi_jar_with_tests(
11 test_deps = TEST_ADAPTERS,
12 deps = COMPILE_DEPS,
13)
14
15onos_app(
16 app_name = "org.onosproject.netcfglinksprovider",
17 category = "Provider",
18 description = "Allows operator to prescribe information about known infrastructure links and " +
19 "their state using the network configuration subsystem. Such information takes precedence " +
20 "over information discovered through other link discovery providers.",
21 included_bundles = BUNDLES,
22 title = "Network Config Link Provider",
23 url = "http://onosproject.org",
24)