mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-16 01:41:26 +02:00
24 lines
594 B
Python
24 lines
594 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:JACKSON',
|
|
'//utils/rest:onlab-rest',
|
|
'//lib:javax.ws.rs-api',
|
|
'//apps/mappingmanagement/api:onos-apps-mappingmanagement-api',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_REST',
|
|
'//web/api:onos-rest-tests',
|
|
'//lib:minimal-json',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
web_context = '/onos/mappingmanagement',
|
|
api_title = 'Mapping Management API',
|
|
api_version = '1.0',
|
|
api_description = 'REST API for ONOS Mapping Management',
|
|
api_package = 'org.onosproject.mapping.web.api',
|
|
)
|