mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 09:21:06 +02:00
21 lines
660 B
Python
21 lines
660 B
Python
COMPILE_DEPS = CORE_DEPS + JACKSON + KRYO + CLI + [
|
|
"//core/common:onos-core-common",
|
|
"//core/store/serializers:onos-core-serializers",
|
|
"//incubator/api:onos-incubator-api",
|
|
"//apps/route-service/api:onos-apps-route-service-api",
|
|
"//apps/mcast/api:onos-apps-mcast-api",
|
|
"//apps/mcast/cli:onos-apps-mcast-cli",
|
|
]
|
|
|
|
TEST_DEPS = TEST_ADAPTERS + [
|
|
"//core/net:onos-core-net",
|
|
"//incubator/api:onos-incubator-api-tests",
|
|
"//apps/route-service/api:onos-apps-route-service-api-tests",
|
|
]
|
|
|
|
osgi_jar_with_tests(
|
|
karaf_command_packages = ["org.onosproject.segmentrouting.cli"],
|
|
test_deps = TEST_DEPS,
|
|
deps = COMPILE_DEPS,
|
|
)
|