blob: 804a67fe5a1bc05322293687d78e2f34da1b088e [file] [log] [blame]
Thomas Vachuska59d24eb2017-03-22 10:57:34 -07001APPS = [
2 'org.onosproject.yang',
3 'org.onosproject.config',
4 'org.onosproject.netconf',
5]
6
7COMPILE_DEPS = [
8 '//lib:CORE_DEPS',
9 '//lib:onos-yang-model',
10 '//lib:onos-yang-runtime',
11 '//apps/config:onos-apps-config',
12 '//protocols/netconf/api:onos-protocols-netconf-api',
13 '//utils/osgi:onlab-osgi',
14]
15
16osgi_jar_with_tests(
17 deps = COMPILE_DEPS,
18)
19
20onos_app(
21 app_name = 'org.onosproject.netconfsb',
22 title = 'NETCONF Device Configuration',
23 category = 'Protocols',
24 url = 'http://onosproject.org',
25 description = 'Extension to allow ONOS to configure NETCONF devices.',
26 required_apps = APPS,
27)