Thomas Vachuska | 9c04643 | 2018-07-11 09:46:35 -0700 | [diff] [blame^] | 1 | COMPILE_DEPS = CORE_DEPS + JACKSON + CLI + ONOS_YANG + [ |
| 2 | "//core/common:onos-core-common", |
| 3 | "@onos_yang_runtime//jar", |
| 4 | ] |
| 5 | |
| 6 | BUNDLES = ONOS_YANG + [ |
| 7 | "@onos_yang_runtime//jar", |
| 8 | "//apps/yang:onos-apps-yang", |
| 9 | "//apps/yang/web:onos-apps-yang-web", |
| 10 | "@org_apache_servicemix_bundles_dom4j//jar", |
| 11 | ] |
| 12 | |
| 13 | EXCLUDED_BUNDLES = [ |
| 14 | ] |
| 15 | |
| 16 | osgi_jar_with_tests( |
| 17 | deps = COMPILE_DEPS, |
| 18 | ) |
| 19 | |
| 20 | onos_app( |
| 21 | category = "Utility", |
| 22 | description = "Provides ability to register compiled YANG models or even to compile YANG source " + |
| 23 | "files on the fly. Registering YANG models allows other ONOS subsystems to interact with " + |
| 24 | "orchestrators or individual network devices using XML or JSON data structured in accordance " + |
| 25 | "with those models.", |
| 26 | included_bundles = BUNDLES, |
| 27 | excluded_bundles = EXCLUDED_BUNDLES, |
| 28 | title = "YANG Compiler and Runtime", |
| 29 | url = "http://onosproject.org", |
| 30 | ) |