blob: 8787855ec15e1d85908ac0d28fb716afe976f45c [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',
Aaron Kruglikov309068e2017-03-17 15:25:54 -07006 '//apps/netconf/client:onos-apps-netconf-client'
Sithara Punnassery43833e12017-03-14 16:29:19 -07007]
8
9osgi_jar_with_tests (
10 deps = COMPILE_DEPS,
11)
12
13BUNDLES = [
14 '//apps/netconf/client:onos-apps-netconf-client',
15 '//apps/netconf/storeadapter:onos-apps-netconf-storeadapter',
16]
17
18onos_app (
19 app_name = 'org.onosproject.netconf',
20 title = 'NETCONF Application Module',
21 category = 'Utility',
22 url = 'http://onosproject.org',
23 description = """This application provides an interface for monitoring and modifying datastores
24 of NETCONF devices using Yang data. It uses the YangRuntime to serialize outbound
25 messages from Yang into NETCONF and deserialize received messages.""",
26 included_bundles = BUNDLES,
27)