blob: 7a890f241d4336fc25b7462718633c0ebe3b0899 [file] [log] [blame]
Ray Milkey5c9e2832018-06-26 18:37:12 -07001COMPILE_DEPS = CORE_DEPS + JACKSON + [
2 "@javax_ws_rs_api//jar",
Ray Milkey5c9e2832018-06-26 18:37:12 -07003 "//utils/rest:onlab-rest",
4 "//drivers/utilities:onos-drivers-utilities",
5 "//protocols/rest/api:onos-protocols-rest-api",
6 "//apps/optical-model:onos-apps-optical-model",
7 "//drivers/optical:onos-drivers-optical",
8]
9
10BUNDLES = [
11 ":onos-drivers-ciena-waveserver",
12 "//drivers/utilities:onos-drivers-utilities",
13]
14
15REQUIRED_APPS = [
16 "org.onosproject.restsb",
17 "org.onosproject.optical-model",
18 "org.onosproject.drivers.optical",
19]
20
21osgi_jar_with_tests(
22 resources = glob(["src/main/resources/**"]),
23 resources_root = "src/main/resources",
24 test_deps = TEST_ADAPTERS,
25 deps = COMPILE_DEPS,
26)
27
28onos_app(
29 app_name = "org.onosproject.drivers.ciena.waveserver",
30 category = "Drivers",
31 description = "Adds support for Ciena Waveserver devices.",
32 included_bundles = BUNDLES,
33 required_apps = REQUIRED_APPS,
34 title = "Ciena Waveserver Drivers",
35 url = "http://onosproject.org",
36)