mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 01:11:30 +02:00
19 lines
457 B
Python
19 lines
457 B
Python
COMPILE_DEPS = COMPILE + JACKSON + [
|
|
"@kryo//jar",
|
|
"@metrics_core//jar",
|
|
"@io_netty_netty//jar",
|
|
"@io_netty_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",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = COMPILE_DEPS,
|
|
)
|