Ray Milkey 0250a0811e Fix dependencies of some bazel tests
Change-Id: If864b37c08db73620c07a17174130024571a8d38
2018-06-28 15:33:02 +00:00

28 lines
710 B
Python

COMPILE_DEPS = CORE_DEPS + JACKSON + KRYO + [
"@openflowj//jar",
"//protocols/openflow/api:onos-protocols-openflow-api",
"//core/store/serializers:onos-core-serializers",
]
BUNDLES = [
":onos-drivers-default",
"@openflowj//jar",
"//protocols/openflow/api:onos-protocols-openflow-api",
]
osgi_jar_with_tests(
resources = glob(["src/main/resources/**"]),
test_deps = TEST_ADAPTERS,
visibility = ["//visibility:public"],
deps = COMPILE_DEPS,
)
onos_app(
app_name = "org.onosproject.drivers",
category = "Drivers",
description = "Suite of default drivers.",
included_bundles = BUNDLES,
title = "Default Drivers",
url = "http://onosproject.org",
)