blob: 2893bea8894aa1e435b49c9390b03d6e633e3d27 [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',
18 api_title = 'CORD Support App',
19 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 (
25 title = 'CORD Support App',
26 category = 'Utility',
27 url = 'http://onosproject.org',
28 description = 'CORD Support application.',
29)