onos/web/api/BUCK
Brian O'Connor e8468b5743 ONOS Swagger Plugin
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
2016-08-03 22:27:51 +00:00

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',
)