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