blob: e21966e9c88a09f9ff32f45643ef0a22cc402d15 [file] [log] [blame]
Ray Milkey18fb0812018-06-21 10:32:53 -07001COMPILE_DEPS = CORE_DEPS + NETTY + JACKSON + [
2 "@org_apache_karaf_shell_console//jar",
3 "//providers/lldpcommon:onos-providers-lldpcommon",
4 "//cli:onos-cli",
5]
6
7BUNDLES = [
8 "//providers/lldpcommon:onos-providers-lldpcommon",
9 "//providers/lldp:onos-providers-lldp",
10]
11
12osgi_jar_with_tests(
13 test_deps = TEST_ADAPTERS,
14 deps = COMPILE_DEPS,
15)
16
17onos_app(
18 app_name = "org.onosproject.lldpprovider",
19 category = "Provider",
20 description = "Provides link discovery to the ONOS core by eavesdropping on the LLDP control packets.",
21 included_bundles = BUNDLES,
22 title = "LLDP Link Provider",
23 url = "http://onosproject.org",
24)