blob: 7b2a79b54c52377362b005c5932531c5e61be040 [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',
12]
13
Yuta HIGUCHI5527e992017-08-08 18:11:17 -070014osgi_jar_with_tests (
Sithara Punnasseryff114552017-01-10 11:40:55 -080015 deps = COMPILE_DEPS,
16)
17
18onos_app (
Thomas Vachuskab0029682017-08-23 17:55:53 -070019 title = 'Dynamic Configuration',
Sithara Punnasseryff114552017-01-10 11:40:55 -080020 category = 'Utility',
21 url = 'http://onosproject.org',
Thomas Vachuskab0029682017-08-23 17:55:53 -070022 description = 'Provides means to track and distribute service and device configuration data ' +
23 'throughout the ONOS cluster. It works with the YANG runtime to ensure that the tracked ' +
24 'data adheres to the registered YANG models. Applications can traverse and access this ' +
25 'data which is organized in a logically unified tree.<p/>(Under development)',
Sithara Punnassery4b091dc2017-03-02 17:22:40 -080026 required_apps = APPS,
Ray Milkey446f4462017-08-17 15:36:01 -070027)