blob: b560a125898ad6f4a41bbfd997b939f54b519fbe [file] [log] [blame]
10068695e340ec92019-10-11 07:03:00 +00001COMPILE_DEPS = CORE_DEPS + JACKSON + [
2 "@commons_jxpath//jar",
3 "@javax_ws_rs_api//jar",
4 "@httpcore_osgi//jar",
5 "//core/store/serializers:onos-core-serializers",
6 "//drivers/utilities:onos-drivers-utilities",
7 "//models/openconfig:onos-models-openconfig",
8 "//protocols/netconf/api:onos-protocols-netconf-api",
9 "//protocols/rest/api:onos-protocols-rest-api",
10 "//apps/odtn/api:onos-apps-odtn-api",
11 "//apps/optical-model:onos-apps-optical-model",
12 "//drivers/optical:onos-drivers-optical",
13]
14
15BUNDLES = [
16 ":onos-drivers-zte",
17 "//drivers/utilities:onos-drivers-utilities",
18]
19
20osgi_jar_with_tests(
21 resources = glob(["src/main/resources/**"]),
22 resources_root = "src/main/resources",
23 deps = COMPILE_DEPS,
24)
25
26onos_app(
27 app_name = "org.onosproject.drivers.zte",
28 category = "Drivers",
29 description = "Adds support for ZTE devices.",
30 included_bundles = BUNDLES,
31 required_apps = [
32 "org.onosproject.netconf",
33 "org.onosproject.restsb",
34 "org.onosproject.netconf",
35 "org.onosproject.config",
36 "org.onosproject.odtn-api",
37 "org.onosproject.drivers.netconf",
38 "org.onosproject.drivers.optical",
39 "org.onosproject.optical-model",
40 ],
41 title = "ZTE Drivers",
42 url = "http://onosproject.org",
43)