Adding interfaces for Netconf SB yang adapter
ONOS-6018
Change-Id: I91fe255b1f82666116c0901fe602c93f14fe33ca
diff --git a/apps/netconf/BUCK b/apps/netconf/BUCK
new file mode 100644
index 0000000..c619118
--- /dev/null
+++ b/apps/netconf/BUCK
@@ -0,0 +1,14 @@
+BUNDLES = [
+ '//apps/netconf/client:onos-apps-netconf-client',
+]
+
+onos_app (
+ app_name = 'org.onosproject.netconf',
+ title = 'NETCONF Application Module',
+ category = 'Utility',
+ url = 'http://onosproject.org',
+ description = """This application provides an interface for monitoring and modifying datastores
+ of NETCONF devices using Yang data. It uses the YangRuntime to serialize outbound
+ messages from Yang into NETCONF and deserialize received messages.""",
+ included_bundles = BUNDLES,
+)