blob: f57c3b5eb68233b6b75be0027fa56e01f1c5f744 [file] [log] [blame]
Ray Milkey18fb0812018-06-21 10:32:53 -07001load("//tools/build/bazel:generate_workspace.bzl", "ONOS_VERSION")
2
3COMPILE_DEPS = CORE_DEPS + JACKSON + [
4 "@org_apache_karaf_shell_console//jar",
5 "//incubator/api:onos-incubator-api",
6 "//cli:onos-cli",
7]
8
9osgi_jar_with_tests(
10 test_deps = TEST_ADAPTERS,
11 deps = COMPILE_DEPS,
12)
13
14onos_app(
15 app_name = "org.onosproject.optical-model",
16 category = "Optical",
17 description = "ONOS optical information model.",
Ray Milkey18fb0812018-06-21 10:32:53 -070018 required_apps = [],
19 title = "Optical Network Model",
20 url = "https://wiki.onosproject.org/x/C4m",
21)