Ray Milkey | f17191b | 2018-07-16 09:25:34 -0700 | [diff] [blame] | 1 | APPS = [ |
| 2 | "org.onosproject.yang", |
| 3 | "org.onosproject.config", |
| 4 | "org.onosproject.netconf", |
| 5 | ] |
| 6 | |
| 7 | COMPILE_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 | |
| 13 | osgi_jar_with_tests( |
| 14 | deps = COMPILE_DEPS, |
| 15 | ) |
| 16 | |
| 17 | onos_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 | ) |