mirror of
https://github.com/opennetworkinglab/onos.git
synced 2026-01-04 08:01:46 +01:00
19 lines
349 B
Python
19 lines
349 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
|
|
)
|