blob: ac2a540bb5018102030c59ba8d1fde89171ae4e1 [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.",
18 # Is there a way to change BUCK target name properly?
19 #name = 'onos-optical-model',
20 feature_coords = "org.onosproject:onos-optical-model:%s" % (ONOS_VERSION),
21 required_apps = [],
22 title = "Optical Network Model",
23 url = "https://wiki.onosproject.org/x/C4m",
24)