mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 01:11:30 +02:00
35 lines
930 B
Python
35 lines
930 B
Python
COMPILE_DEPS = CORE_DEPS + JACKSON + CLI + [
|
|
"//incubator/api:onos-incubator-api",
|
|
"//apps/routing-api:onos-apps-routing-api",
|
|
"//apps/route-service/api:onos-apps-route-service-api",
|
|
"//apps/intentsync:onos-apps-intentsync",
|
|
]
|
|
|
|
BUNDLES = [
|
|
"//apps/sdnip:onos-apps-sdnip",
|
|
"//apps/routing-api:onos-apps-routing-api",
|
|
"//apps/routing/common:onos-apps-routing-common",
|
|
]
|
|
|
|
TEST_DEPS = TEST_ADAPTERS + [
|
|
"//apps/routing-api:onos-apps-routing-api-tests",
|
|
"//apps/route-service/api:onos-apps-route-service-api-tests",
|
|
]
|
|
|
|
osgi_jar_with_tests(
|
|
test_deps = TEST_DEPS,
|
|
deps = COMPILE_DEPS,
|
|
)
|
|
|
|
onos_app(
|
|
category = "Traffic Engineering",
|
|
description = "SDN-IP peering application",
|
|
included_bundles = BUNDLES,
|
|
required_apps = [
|
|
"org.onosproject.intentsynchronizer",
|
|
"org.onosproject.route-service",
|
|
],
|
|
title = "SDN-IP",
|
|
url = "http://onosproject.org",
|
|
)
|