mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 01:11:30 +02:00
26 lines
565 B
Python
26 lines
565 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:JACKSON',
|
|
'//lib:METRICS',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//lib:javax.ws.rs-api',
|
|
'//utils/rest:onlab-rest',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_REST',
|
|
'//lib:minimal-json',
|
|
'//lib:jersey-security'
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
name = 'onos-rest',
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
web_context = '/onos/v1',
|
|
api_title = 'ONOS Core REST API',
|
|
api_version = '1.0',
|
|
api_description = 'ONOS Core REST API',
|
|
api_package = 'org.onosproject.rest.impl',
|
|
)
|