blob: 3da6a0e1c1932f3fa49ee62449ffd48cde034b6a [file] [log] [blame]
Ray Milkey39332952018-07-16 13:42:51 -07001COMPILE_DEPS = CORE_DEPS + JACKSON
2
3osgi_jar_with_tests(
4 resources = glob(["src/main/resources/**"]),
5 resources_root = "src/main/resources",
6 deps = COMPILE_DEPS,
7)
8
9onos_app(
10 category = "GUI",
11 description = "Extends the GUI topology view by adding an overlay that allows the operator " +
12 "to visualize topology paths using various forms of path-finding algorithms such as " +
13 "the Dijkstra shortest path using default link metric (ONOS default), using geographic " +
14 "distances, disjoint paths, etc.",
15 title = "Path Visualization",
16 url = "http://onosproject.org",
17)