blob: dac73d61aa308e7b1708f956f4abd08bb79999f4 [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',
Ray Milkey446f4462017-08-17 15:36:01 -07007 '//lib:KRYO',
Sithara Punnasseryff114552017-01-10 11:40:55 -08008 '//lib:org.apache.karaf.shell.console',
Sithara Punnassery4b091dc2017-03-02 17:22:40 -08009 '//lib:onos-yang-model',
Sithara Punnasseryff114552017-01-10 11:40:55 -080010 '//core/store/serializers:onos-core-serializers',
11 '//cli:onos-cli',
Yuta HIGUCHI825401e2018-02-27 13:23:25 -080012 '//lib:commons-text',
Sithara Punnasseryff114552017-01-10 11:40:55 -080013]
14
Yuta HIGUCHI5527e992017-08-08 18:11:17 -070015osgi_jar_with_tests (
Sithara Punnasseryff114552017-01-10 11:40:55 -080016 deps = COMPILE_DEPS,
17)
18
19onos_app (
Thomas Vachuskab0029682017-08-23 17:55:53 -070020 title = 'Dynamic Configuration',
Sithara Punnasseryff114552017-01-10 11:40:55 -080021 category = 'Utility',
22 url = 'http://onosproject.org',
Thomas Vachuskab0029682017-08-23 17:55:53 -070023 description = 'Provides means to track and distribute service and device configuration data ' +
24 'throughout the ONOS cluster. It works with the YANG runtime to ensure that the tracked ' +
25 'data adheres to the registered YANG models. Applications can traverse and access this ' +
26 'data which is organized in a logically unified tree.<p/>(Under development)',
Sithara Punnassery4b091dc2017-03-02 17:22:40 -080027 required_apps = APPS,
Ray Milkey446f4462017-08-17 15:36:01 -070028)