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