Thomas Vachuska | 59d24eb | 2017-03-22 10:57:34 -0700 | [diff] [blame] | 1 | APPS = [ |
Thomas Vachuska | c98aa2a | 2017-08-28 10:47:48 -0700 | [diff] [blame] | 2 | 'org.onosproject.yang', |
| 3 | 'org.onosproject.config', |
| 4 | 'org.onosproject.netconf', |
Thomas Vachuska | 59d24eb | 2017-03-22 10:57:34 -0700 | [diff] [blame] | 5 | ] |
| 6 | |
| 7 | COMPILE_DEPS = [ |
Thomas Vachuska | c98aa2a | 2017-08-28 10:47:48 -0700 | [diff] [blame] | 8 | '//lib:CORE_DEPS', |
| 9 | '//lib:onos-yang-model', |
| 10 | '//lib:onos-yang-runtime', |
| 11 | '//apps/config:onos-apps-config', |
| 12 | '//utils/misc:onlab-misc', |
| 13 | '//protocols/netconf/api:onos-protocols-netconf-api', |
| 14 | '//utils/osgi:onlab-osgi', |
Thomas Vachuska | 59d24eb | 2017-03-22 10:57:34 -0700 | [diff] [blame] | 15 | ] |
| 16 | |
| 17 | osgi_jar_with_tests( |
Thomas Vachuska | c98aa2a | 2017-08-28 10:47:48 -0700 | [diff] [blame] | 18 | deps = COMPILE_DEPS, |
Thomas Vachuska | 59d24eb | 2017-03-22 10:57:34 -0700 | [diff] [blame] | 19 | ) |
| 20 | |
| 21 | onos_app( |
Thomas Vachuska | c98aa2a | 2017-08-28 10:47:48 -0700 | [diff] [blame] | 22 | app_name = 'org.onosproject.netconfsb', |
| 23 | title = 'NETCONF Protocol Subsystem', |
| 24 | category = 'Protocol', |
| 25 | url = 'http://onosproject.org', |
| 26 | description = 'Exposes APIs to establish NETCONF connections to devices and to send and receive ' + |
| 27 | 'messages and asynchronous notifications over such connection.', |
| 28 | required_apps = APPS, |
Thomas Vachuska | 59d24eb | 2017-03-22 10:57:34 -0700 | [diff] [blame] | 29 | ) |