Thomas Vachuska | 9ac4c7e | 2017-02-23 09:01:45 -0800 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
Ray Milkey | 446f446 | 2017-08-17 15:36:01 -0700 | [diff] [blame] | 3 | '//lib:JACKSON', |
| 4 | '//lib:ONOS_YANG', |
Thomas Vachuska | 04059f9 | 2017-03-07 15:16:23 -0800 | [diff] [blame] | 5 | '//lib:onos-yang-runtime', |
Thomas Vachuska | c307d21 | 2017-07-31 13:57:20 -0700 | [diff] [blame] | 6 | '//apps/yang:onos-apps-yang', |
Thomas Vachuska | 9ac4c7e | 2017-02-23 09:01:45 -0800 | [diff] [blame] | 7 | ] |
| 8 | |
| 9 | osgi_jar_with_tests ( |
| 10 | deps = COMPILE_DEPS, |
| 11 | resources_root = 'src/main/resources', |
| 12 | resources = glob(['src/main/resources/**']), |
| 13 | ) |
| 14 | |
| 15 | onos_app ( |
| 16 | title = 'YANG Runtime GUI', |
| 17 | category = 'Utility', |
| 18 | url = 'http://onosproject.org', |
Thomas Vachuska | b002968 | 2017-08-23 17:55:53 -0700 | [diff] [blame] | 19 | description = 'Adds GUI extension that allows the operator to view the list of currently ' + |
| 20 | 'registered YANG models, and their YANG sources. It also provides means for compiling ' + |
| 21 | 'source YANG files (*.yang, *.zip, *.jar) on the fly and directly from the GUI using ' + |
| 22 | 'drag-n-drop.<p/>User can simply compress a set of YANG source files and drop it on the ' + |
| 23 | 'YANG Models GUI view to automatically compile and then register the compiled YANG models.', |
Thomas Vachuska | 04059f9 | 2017-03-07 15:16:23 -0800 | [diff] [blame] | 24 | required_apps = [ 'org.onosproject.yang' ], |
Thomas Vachuska | 9ac4c7e | 2017-02-23 09:01:45 -0800 | [diff] [blame] | 25 | ) |