mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 09:21:06 +02:00
17 lines
376 B
Python
17 lines
376 B
Python
PROTOBUF_VER = '3.2.0'
|
|
GRPC_VER = '1.3.1'
|
|
|
|
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//protocols/grpc/api:onos-protocols-grpc-api',
|
|
'//protocols/grpc/proto:onos-protocols-grpc-proto',
|
|
'//incubator/grpc-dependencies:grpc-core-repkg-' + GRPC_VER,
|
|
'//lib:grpc-stub-' + GRPC_VER,
|
|
'//lib:protobuf-java-' + PROTOBUF_VER,
|
|
]
|
|
|
|
osgi_jar (
|
|
deps = COMPILE_DEPS,
|
|
)
|
|
|