mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-12-17 23:32:08 +01:00
18 lines
462 B
Python
18 lines
462 B
Python
COMPILE_DEPS = CORE_DEPS + JACKSON + KRYO + [
|
|
"@openflowj//jar",
|
|
"//protocols/openflow/api:onos-protocols-openflow-api",
|
|
"//core/store/serializers:onos-core-serializers",
|
|
]
|
|
|
|
TEST_DEPS = TEST_ADAPTERS + [
|
|
"//core/api:onos-api-tests",
|
|
]
|
|
|
|
osgi_jar_with_tests(
|
|
#resources_root = 'src/main/resources',
|
|
resources = glob(["src/main/resources/**"]),
|
|
test_deps = TEST_DEPS,
|
|
visibility = ["//visibility:public"],
|
|
deps = COMPILE_DEPS,
|
|
)
|