blob: cda522b20c31d301991d8d223951269ad7b8470d [file] [log] [blame]
Sithara Punnassery4b091dc2017-03-02 17:22:40 -08001APPS = [
2 'org.onosproject.yang',
3]
4
Sithara Punnasseryff114552017-01-10 11:40:55 -08005COMPILE_DEPS = [
6 '//lib:CORE_DEPS',
7 '//lib:org.apache.karaf.shell.console',
Sithara Punnassery4b091dc2017-03-02 17:22:40 -08008 '//lib:onos-yang-model',
Sithara Punnasseryff114552017-01-10 11:40:55 -08009 '//core/store/serializers:onos-core-serializers',
10 '//cli:onos-cli',
11]
12
Yuta HIGUCHI5527e992017-08-08 18:11:17 -070013osgi_jar_with_tests (
Sithara Punnasseryff114552017-01-10 11:40:55 -080014 deps = COMPILE_DEPS,
15)
16
17onos_app (
Thomas Vachuska7c45e282017-08-23 17:55:53 -070018 title = 'Dynamic Configuration',
Sithara Punnasseryff114552017-01-10 11:40:55 -080019 category = 'Utility',
20 url = 'http://onosproject.org',
Thomas Vachuska7c45e282017-08-23 17:55:53 -070021 description = 'Provides means to track and distribute service and device configuration data ' +
22 'throughout the ONOS cluster. It works with the YANG runtime to ensure that the tracked ' +
23 'data adheres to the registered YANG models. Applications can traverse and access this ' +
24 'data which is organized in a logically unified tree.<p/>(Under development)',
Sithara Punnassery4b091dc2017-03-02 17:22:40 -080025 required_apps = APPS,
Sithara Punnasseryff114552017-01-10 11:40:55 -080026)