mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-20 20:02:17 +02:00
Updated cordvtn, dhcp, fwd, onos-api, of-api, onlab-rest, onos-rest, onos-gui Also, fixed checkstyle error print Change-Id: I9d6ab76791e8603678079067a3b4e007ca7c4667
20 lines
417 B
Python
20 lines
417 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//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',
|
|
)
|