Sithara Punnassery | 4b091dc | 2017-03-02 17:22:40 -0800 | [diff] [blame] | 1 | APPS = [ |
| 2 | 'org.onosproject.yang', |
| 3 | ] |
| 4 | |
Sithara Punnassery | ff11455 | 2017-01-10 11:40:55 -0800 | [diff] [blame] | 5 | COMPILE_DEPS = [ |
| 6 | '//lib:CORE_DEPS', |
Ray Milkey | 446f446 | 2017-08-17 15:36:01 -0700 | [diff] [blame] | 7 | '//lib:KRYO', |
Sithara Punnassery | ff11455 | 2017-01-10 11:40:55 -0800 | [diff] [blame] | 8 | '//lib:org.apache.karaf.shell.console', |
Sithara Punnassery | 4b091dc | 2017-03-02 17:22:40 -0800 | [diff] [blame] | 9 | '//lib:onos-yang-model', |
Sithara Punnassery | ff11455 | 2017-01-10 11:40:55 -0800 | [diff] [blame] | 10 | '//core/store/serializers:onos-core-serializers', |
| 11 | '//cli:onos-cli', |
Yuta HIGUCHI | 825401e | 2018-02-27 13:23:25 -0800 | [diff] [blame] | 12 | '//lib:commons-text', |
Sithara Punnassery | ff11455 | 2017-01-10 11:40:55 -0800 | [diff] [blame] | 13 | ] |
| 14 | |
Yuta HIGUCHI | 5527e99 | 2017-08-08 18:11:17 -0700 | [diff] [blame] | 15 | osgi_jar_with_tests ( |
Sithara Punnassery | ff11455 | 2017-01-10 11:40:55 -0800 | [diff] [blame] | 16 | deps = COMPILE_DEPS, |
| 17 | ) |
| 18 | |
| 19 | onos_app ( |
Thomas Vachuska | b002968 | 2017-08-23 17:55:53 -0700 | [diff] [blame] | 20 | title = 'Dynamic Configuration', |
Sithara Punnassery | ff11455 | 2017-01-10 11:40:55 -0800 | [diff] [blame] | 21 | category = 'Utility', |
| 22 | url = 'http://onosproject.org', |
Thomas Vachuska | b002968 | 2017-08-23 17:55:53 -0700 | [diff] [blame] | 23 | 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 Punnassery | 4b091dc | 2017-03-02 17:22:40 -0800 | [diff] [blame] | 27 | required_apps = APPS, |
Ray Milkey | 446f446 | 2017-08-17 15:36:01 -0700 | [diff] [blame] | 28 | ) |