blob: 24b9fe37d5d25a6ec4be61ed011362a1a9403481 [file] [log] [blame]
Ray Milkeyf17191b2018-07-16 09:25:34 -07001APPS = [
2 "org.onosproject.yang",
3 "org.onosproject.config",
4 "org.onosproject.netconf",
5]
6
7COMPILE_DEPS = CORE_DEPS + ONOS_YANG + [
8 "@onos_yang_runtime//jar",
9 "//apps/config:onos-apps-config",
10 "//protocols/netconf/api:onos-protocols-netconf-api",
11]
12
13osgi_jar_with_tests(
14 deps = COMPILE_DEPS,
15)
16
17onos_app(
18 app_name = "org.onosproject.netconfsb",
19 category = "Protocol",
20 description = "Exposes APIs to establish NETCONF connections to devices and to send and receive " +
21 "messages and asynchronous notifications over such connection.",
22 required_apps = APPS,
23 title = "NETCONF Protocol Subsystem",
24 url = "http://onosproject.org",
25)