mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 17:31:31 +02:00
- virtual networking moved to /apps/virtual; with CLI & REST API - tunnels and labels moved to /apps/tunnel; with CLI & REST API; UI disabled for now - protobuf/models moved to /core/protobuf/models - defunct grpc/rpc registry stuff left under /graveyard - compile dependencies on /incubator moved to respective modules for compilation - run-time dependencies will need to be re-tested for dependent apps - /graveyard will be removed in not-too-distant future Change-Id: I0a0b995c635487edcf95a352f50dd162186b0b39
38 lines
1010 B
Python
38 lines
1010 B
Python
COMPILE_DEPS = CORE_DEPS + JACKSON + CLI + [
|
|
"//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(
|
|
karaf_command_packages = [
|
|
"org.onosproject.sdnip.cli",
|
|
"org.onosproject.sdnip.cli.completer",
|
|
],
|
|
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",
|
|
)
|