blob: f7fd3eae4547c2b7e220183a9d63612d8fd0a9f3 [file] [log] [blame]
Ray Milkey816db102018-05-30 14:16:37 -07001COMPILE_DEPS = CORE_DEPS + [
2 "@jersey_client//jar",
3 "@jersey_server//jar",
4 "@jersey_common//jar",
Sean Condon5548ce62018-07-30 16:00:10 +01005 "@jersey_media_sse//jar",
Ray Milkey816db102018-05-30 14:16:37 -07006 "@jersey_security//jar",
7 "@httpclient_osgi//jar",
8 "@httpcore_osgi//jar",
9 "@javax_ws_rs_api//jar",
10 "@hk2_api//jar",
11 "@aopalliance_repackaged//jar",
12 "@javax_inject//jar",
13 "//protocols/rest/api:onos-protocols-rest-api",
14]
15
Sean Condon5548ce62018-07-30 16:00:10 +010016TEST_DEPS = TEST_REST + [
17 "//core/common:onos-core-common-tests"
18]
19
Ray Milkey816db102018-05-30 14:16:37 -070020osgi_jar_with_tests(
21 deps = COMPILE_DEPS,
Sean Condon5548ce62018-07-30 16:00:10 +010022 test_deps = TEST_DEPS,
Ray Milkey816db102018-05-30 14:16:37 -070023)