mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 17:31:31 +02:00
19 lines
575 B
Python
19 lines
575 B
Python
COMPILE_DEPS = CORE_DEPS + NETTY + JACKSON + KRYO + [
|
|
"@io_netty_netty//jar",
|
|
"//incubator/api:onos-incubator-api",
|
|
"//protocols/pcep/pcepio:onos-protocols-pcep-pcepio",
|
|
"//protocols/pcep/server/api:onos-protocols-pcep-server-api",
|
|
"//core/store/serializers:onos-core-serializers",
|
|
"//apps/pcep-api:onos-apps-pcep-api",
|
|
]
|
|
|
|
TEST_DEPS = TEST_ADAPTERS + [
|
|
"//protocols/pcep/server/api:onos-protocols-pcep-server-api-tests",
|
|
"//incubator/api:onos-incubator-api-tests",
|
|
]
|
|
|
|
osgi_jar_with_tests(
|
|
test_deps = TEST_DEPS,
|
|
deps = COMPILE_DEPS,
|
|
)
|