blob: 809b29df3ade789c52e5ca41b019bfdf759b75ab [file] [log] [blame]
Ray Milkey35ea5bf2018-07-17 15:28:44 -07001COMPILE_DEPS = CORE_DEPS + JACKSON + REST + [
2 "//core/store/serializers:onos-core-serializers",
3]
4
5TEST_DEPS = TEST_REST + [
Carmelo Casconed33d3b42019-06-18 12:12:36 -07006 "//deps:jersey-server",
Ray Milkey35ea5bf2018-07-17 15:28:44 -07007]
8
9osgi_jar_with_tests(
10 api_description = "REST API for CORD inquiry to ONOS topology",
11 api_package = "org.onosproject.cordsupport",
12 api_title = "CORD Support",
13 api_version = "1.0",
14 test_deps = TEST_DEPS,
15 web_context = "/onos/cord-support",
16 deps = COMPILE_DEPS,
17)
18
19onos_app(
20 category = "Integration",
21 description = "CORD Support application.",
22 title = "CORD Support",
23 url = "http://onosproject.org",
24)