mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 02:11:38 +02:00
26 lines
609 B
Python
26 lines
609 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:JACKSON',
|
|
'//lib:KRYO',
|
|
'//lib:javax.ws.rs-api',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
'//apps/dhcp/api:onos-apps-dhcp-api',
|
|
'//utils/rest:onlab-rest',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
'//cli:onos-cli',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
web_context = '/onos/dhcp',
|
|
api_title = 'DHCP Server',
|
|
api_version = '1.0',
|
|
api_description = 'REST API for DHCP Server',
|
|
api_package = 'org.onosproject.dhcp.rest',
|
|
)
|