mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-23 21:31:00 +02:00
- also, update cell simon-single. - fixed checkstyle (unused import) Change-Id: I7fc4d601a5f2d79a993fab5a5b664348440a85ea
29 lines
639 B
Python
29 lines
639 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:javax.ws.rs-api',
|
|
'//utils/rest:onlab-rest',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_REST',
|
|
'//lib:jersey-server',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
web_context = '/onos/cord-support',
|
|
api_title = 'CORD Support App',
|
|
api_version = '1.0',
|
|
api_description = 'REST API for CORD inquiry to ONOS topology',
|
|
api_package = 'org.onosproject.cordsupport',
|
|
)
|
|
|
|
onos_app (
|
|
title = 'CORD Support App',
|
|
category = 'Utility',
|
|
url = 'http://onosproject.org',
|
|
description = 'CORD Support application.',
|
|
)
|