blob: b58c1d8473561761eefd3206a0389b20ad1f4406 [file] [log] [blame]
Sithara Punnassery43833e12017-03-14 16:29:19 -07001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//lib:onos-yang-model',
4 '//lib:onos-yang-runtime',
5 '//apps/config:onos-apps-config',
6]
7
8osgi_jar_with_tests (
9 deps = COMPILE_DEPS,
10)
11
12BUNDLES = [
13 '//apps/netconf/client:onos-apps-netconf-client',
14 '//apps/netconf/storeadapter:onos-apps-netconf-storeadapter',
15]
16
17onos_app (
18 app_name = 'org.onosproject.netconf',
19 title = 'NETCONF Application Module',
20 category = 'Utility',
21 url = 'http://onosproject.org',
22 description = """This application provides an interface for monitoring and modifying datastores
23 of NETCONF devices using Yang data. It uses the YangRuntime to serialize outbound
24 messages from Yang into NETCONF and deserialize received messages.""",
25 included_bundles = BUNDLES,
26)