mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-16 01:41:26 +02:00
cli core incubator/rpc pipelines/basic protocols/netconf protocols/openflow protocols/rest Change-Id: I165b94a04ba893d97d944e5deb2746f54566503b
15 lines
224 B
Python
15 lines
224 B
Python
GRPC_VER = "1_3_1"
|
|
|
|
COMPILE_DEPS = CORE_DEPS + [
|
|
"@grpc_core_" + GRPC_VER + "//jar",
|
|
]
|
|
|
|
TEST_DEPS = TEST + [
|
|
"//core/api:onos-api-tests",
|
|
]
|
|
|
|
osgi_jar_with_tests(
|
|
test_deps = TEST_DEPS,
|
|
deps = COMPILE_DEPS,
|
|
)
|