blob: 1dd27001a01151b6d2122a8df47964dbc3b3b4b6 [file] [log] [blame]
Ray Milkey5c9e2832018-06-26 18:37:12 -07001COMPILE_DEPS = CORE_DEPS + JACKSON + [
2 "@javax_ws_rs_api//jar",
Georgios Katsikas973a2652018-06-28 08:45:47 +02003 "@joda_time//jar",
Ray Milkey5c9e2832018-06-26 18:37:12 -07004 "//incubator/api:onos-incubator-api",
5 "//utils/rest:onlab-rest",
6 "//protocols/rest/api:onos-protocols-rest-api",
7]
8
9BUNDLES = [
10 ":onos-drivers-server",
11]
12
13REQUIRED_APPS = [
14 "org.onosproject.restsb",
15]
16
17osgi_jar_with_tests(
18 resources = glob(["src/main/resources/**"]),
19 resources_root = "src/main/resources",
20 test_deps = TEST_ADAPTERS,
21 deps = COMPILE_DEPS,
22)
23
24onos_app(
25 app_name = "org.onosproject.drivers.server",
26 category = "Drivers",
27 description = "ONOS southbound drivers for commodity servers",
28 included_bundles = BUNDLES,
29 origin = "KTH Royal Institute of Technology & RISE SICS",
30 required_apps = REQUIRED_APPS,
31 title = "Server Device Drivers",
32 url = "https://github.com/gkatsikas/onos/tree/metron-driver",
33)