blob: 2caced2827ec00e009108885fa60a4b631373ccb [file] [log] [blame]
Simon Hunt4e942932017-03-06 19:09:25 -08001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
Ray Milkey446f4462017-08-17 15:36:01 -07003 '//lib:JACKSON',
Simon Hunt4e942932017-03-06 19:09:25 -08004 '//lib:javax.ws.rs-api',
5 '//utils/rest:onlab-rest',
6 '//core/store/serializers:onos-core-serializers',
7]
8
9TEST_DEPS = [
10 '//lib:TEST_REST',
11 '//lib:jersey-server',
12]
13
14osgi_jar_with_tests (
15 deps = COMPILE_DEPS,
16 test_deps = TEST_DEPS,
17 web_context = '/onos/cord-support',
Thomas Vachuskab0029682017-08-23 17:55:53 -070018 api_title = 'CORD Support',
Simon Hunt4e942932017-03-06 19:09:25 -080019 api_version = '1.0',
20 api_description = 'REST API for CORD inquiry to ONOS topology',
21 api_package = 'org.onosproject.cordsupport',
22)
23
24onos_app (
Thomas Vachuskab0029682017-08-23 17:55:53 -070025 title = 'CORD Support',
Thomas Vachuskaca0b5df2018-06-22 16:24:47 -070026 category = 'Integration',
Simon Hunt4e942932017-03-06 19:09:25 -080027 url = 'http://onosproject.org',
28 description = 'CORD Support application.',
29)