blob: 66f862a6a884cd82d5f90edd7d9a6e7226fff6a8 [file] [log] [blame]
Thomas Vachuska9c046432018-07-11 09:46:35 -07001COMPILE_DEPS = CORE_DEPS + JACKSON + ONOS_YANG + [
2 "@onos_yang_runtime//jar",
3 "//apps/yang:onos-apps-yang",
4]
5
6osgi_jar_with_tests (
7 deps = COMPILE_DEPS,
8 resources_root = "src/main/resources",
9 resources = glob(["src/main/resources/**"]),
10)
11
12onos_app (
13 category = "GUI",
14 description = "Adds GUI extension that allows the operator to view the list of currently " +
15 "registered YANG models, and their YANG sources. It also provides means for compiling " +
16 "source YANG files (*.yang, *.zip, *.jar) on the fly and directly from the GUI using " +
17 "drag-n-drop.<p/>User can simply compress a set of YANG source files and drop it on the " +
18 "YANG Models GUI view to automatically compile and then register the compiled YANG models.",
19 required_apps = [ "org.onosproject.yang" ],
20 title = "YANG Runtime GUI",
21 url = "http://onosproject.org",
22)