blob: 2d53a222dd038e9b25f1fc784c628d22c2649306 [file] [log] [blame]
HelloONOS137e1fb2019-08-20 16:43:52 +09001COMPILE_DEPS = CORE_DEPS + JACKSON + [
2 "@javax_ws_rs_api//jar",
3 "//utils/rest:onlab-rest",
4 "//drivers/utilities:onos-drivers-utilities",
5 "//protocols/rest/api:onos-protocols-rest-api",
6]
7
8TEST_DEPS = TEST_ADAPTERS + [
9 "//core/api:onos-api-tests",
10]
11
12BUNDLES = [
13 ":onos-drivers-dellrest",
14 "//drivers/utilities:onos-drivers-utilities",
15]
16
17osgi_jar_with_tests(
18 resources = glob(["src/main/resources/**"]),
19 resources_root = "src/main/resources",
20 test_deps = TEST_DEPS,
21 deps = COMPILE_DEPS,
22)
23
24onos_app(
25 app_name = "org.onosproject.drivers.dellrest",
26 category = "Drivers",
27 description = "Adds support for Dell Networks devices using REST.",
28 included_bundles = BUNDLES,
29 required_apps = ["org.onosproject.restsb"],
30 title = "Dell Networks REST Drivers",
31 url = "http://onosproject.org",
32)