blob: 9120487c68cb09d6eae71541e4312f9d43089951 [file] [log] [blame]
Ray Milkey18fb0812018-06-21 10:32:53 -07001COMPILE_DEPS = CORE_DEPS + NETTY + [
2 "@org_apache_karaf_shell_console//jar",
3 "//cli:onos-cli",
4]
5
6osgi_jar_with_tests(
7 import_packages = "*,org.onosproject.cli.net",
8 resources = glob(["src/main/resources/**"]),
9 resources_root = "src/main/resources",
10 deps = COMPILE_DEPS,
11)
12
13onos_app(
14 category = "Test Utility",
15 description = "Suite of device, link, host, flow and packet providers that allow the operator " +
16 "to test ONOS against completely fictional network topology. This is useful for conducting " +
17 "ONOS core performance tests and for developing features that require only control plane " +
18 "- and not data plane - functionality. ",
19 title = "Null Provider Suite",
20 url = "http://onosproject.org",
21)