blob: 3e08af2dbb06eb57c03a0f7853ca01d9d637ea4a [file] [log] [blame]
Simon Hunt4e942932017-03-06 19:09:25 -08001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//lib:javax.ws.rs-api',
4 '//utils/rest:onlab-rest',
5 '//core/store/serializers:onos-core-serializers',
6]
7
8TEST_DEPS = [
9 '//lib:TEST_REST',
10 '//lib:jersey-server',
11]
12
13osgi_jar_with_tests (
14 deps = COMPILE_DEPS,
15 test_deps = TEST_DEPS,
16 web_context = '/onos/cord-support',
Thomas Vachuska7c45e282017-08-23 17:55:53 -070017 api_title = 'CORD Support',
Simon Hunt4e942932017-03-06 19:09:25 -080018 api_version = '1.0',
19 api_description = 'REST API for CORD inquiry to ONOS topology',
20 api_package = 'org.onosproject.cordsupport',
21)
22
23onos_app (
Thomas Vachuska7c45e282017-08-23 17:55:53 -070024 title = 'CORD Support',
Simon Hunt4e942932017-03-06 19:09:25 -080025 category = 'Utility',
26 url = 'http://onosproject.org',
27 description = 'CORD Support application.',
28)