blob: e65f0e9f83139684a8e9dcb5eb2b9772240297b6 [file] [log] [blame]
Ray Milkey18fb0812018-06-21 10:32:53 -07001BUNDLES = [
2 "@sshd_core//jar",
3 "//providers/netconf/device:onos-providers-netconf-device",
4 "//providers/netconf/alarm:onos-providers-netconf-alarm",
5 "//protocols/netconf/api:onos-protocols-netconf-api",
6 "//protocols/netconf/ctl:onos-protocols-netconf-ctl",
7]
8
9EXCLUDED_BUNDLES = [
10 "@ganymed_ssh2//jar",
11]
12
13onos_app(
14 category = "Provider",
15 description = "Provides means for ONOS to discover and trigger the initial handshake procedure " +
16 "with NETCONF from information given by network configuration." +
17 "Also provides capabilities for receiving asynchronous alarm notifications from devices.",
18 excluded_bundles = EXCLUDED_BUNDLES,
19 included_bundles = BUNDLES,
20 required_apps = ["org.onosproject.faultmanagement"],
21 title = "NETCONF Provider",
22 url = "https://wiki.onosproject.org/display/ONOS/NETCONF",
23)