blob: 87e0e4d8bab4b7ff5be033d20cdae5d599583c5e [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 "//utils/rest:onlab-rest",
5 "//protocols/rest/api:onos-protocols-rest-api",
6]
7
8BUNDLES = [
9 ":onos-drivers-server",
10]
11
12REQUIRED_APPS = [
13 "org.onosproject.restsb",
14]
15
16osgi_jar_with_tests(
17 resources = glob(["src/main/resources/**"]),
18 resources_root = "src/main/resources",
19 test_deps = TEST_ADAPTERS,
20 deps = COMPILE_DEPS,
21)
22
23onos_app(
24 app_name = "org.onosproject.drivers.server",
25 category = "Drivers",
26 description = "ONOS southbound drivers for commodity servers",
27 included_bundles = BUNDLES,
28 origin = "KTH Royal Institute of Technology & RISE SICS",
29 required_apps = REQUIRED_APPS,
30 title = "Server Device Drivers",
31 url = "https://github.com/gkatsikas/onos/tree/metron-driver",
32)