mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 02:11:38 +02:00
20 lines
464 B
Python
20 lines
464 B
Python
COMPILE_DEPS = COMPILE + JACKSON + [
|
|
"@kryo//jar",
|
|
"@metrics_core//jar",
|
|
"@netty//jar",
|
|
"@netty_common//jar",
|
|
"@objenesis//jar",
|
|
]
|
|
|
|
osgi_jar_with_tests(
|
|
name = "onlab-misc",
|
|
exclude_tests = [
|
|
"org.onlab.graph.AbstractGraphPathSearchTest",
|
|
"org.onlab.graph.GraphTest",
|
|
"org.onlab.util.SlidingWindowCounterTest",
|
|
],
|
|
group = "org.onlab",
|
|
visibility = ["//visibility:public"],
|
|
deps = COMPILE_DEPS,
|
|
)
|