mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 01:11:30 +02:00
just does swagger now to build the plugin, you need to download to following: https://github.com/bocon13/buck/releases/download/v2016.07.29.01-wip/buck.jar put the buck.jar in tools/build/buck-plugin/lib Change-Id: Id1b833dd013fbc5581f8e884e755920829c4a17e
22 lines
469 B
Python
22 lines
469 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//lib:javax.ws.rs-api',
|
|
'//utils/rest:onlab-rest',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_REST',
|
|
]
|
|
|
|
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',
|
|
)
|