mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-12-25 19:22:24 +01:00
19 lines
350 B
Python
19 lines
350 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:kafka-clients',
|
|
'//lib:jersey-client',
|
|
'//lib:javax.ws.rs-api',
|
|
'//lib:influxdb-java',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//core/api:onos-api-tests',
|
|
'//core/common:onos-core-common-tests',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
)
|