Adding a early version of the passive component to handle communication between the NETCONF subsystem and the Dynamic Config Store (as well as other apps).
Change-Id: I61890f057825f40e4db4a73a04b063788b6e6a0c
diff --git a/apps/netconf/client/BUCK b/apps/netconf/client/BUCK
index b31c727..49070d1 100644
--- a/apps/netconf/client/BUCK
+++ b/apps/netconf/client/BUCK
@@ -1,9 +1,23 @@
+APPS = [
+ 'org.onosproject.yang',
+]
+
COMPILE_DEPS = [
'//lib:CORE_DEPS',
+ '//lib:onos-yang-model',
'//lib:onos-yang-runtime',
- '//protocols/netconf/api:onos-protocols-netconf-api'
+ '//protocols/netconf/api:onos-protocols-netconf-api',
+ '//utils/osgi:onlab-osgi',
]
osgi_jar_with_tests (
deps = COMPILE_DEPS,
+)
+
+onos_app (
+ title = 'Dynamic Config Netconf App',
+ category = 'Utility',
+ url = 'http://onosproject.org',
+ description = 'Netconf support for Dynamic configuration service.',
+ required_apps = APPS,
)
\ No newline at end of file