blob: 2f77c25a0b285046ff06f8ea8ff5fb5aa44f5492 [file] [log] [blame]
Ray Milkey35ea5bf2018-07-17 15:28:44 -07001COMPILE_DEPS = CORE_DEPS + JACKSON + [
2 "@jersey_server//jar",
3 "@javax_ws_rs_api//jar",
Andrea Campanella4828f182018-08-24 14:18:37 +02004 "@servlet_api//jar",
Ray Milkey35ea5bf2018-07-17 15:28:44 -07005 "@javax_inject//jar",
6 "//utils/rest:onlab-rest",
7 "//apps/restconf/api:onos-apps-restconf-api",
8]
9
10TEST_DEPS = TEST_REST + [
11 "//utils/osgi:onlab-osgi-tests",
12 "//web/api:onos-rest-tests",
13]
14
15osgi_jar_with_tests(
Andrea Campanella4828f182018-08-24 14:18:37 +020016 exclude_tests = ["org.onosproject.protocol.restconf.server.rpp.RestconfWebResourceTest"],
Ray Milkey35ea5bf2018-07-17 15:28:44 -070017 test_deps = TEST_DEPS,
18 web_context = "/onos/restconf",
19 deps = COMPILE_DEPS,
20)