mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-11-02 01:01:03 +01: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
23 lines
596 B
Python
23 lines
596 B
Python
COMPILE_DEPS = CORE_DEPS + JACKSON + [
|
|
"@concurrent_trees//jar",
|
|
"//apps/routing-api:onos-apps-routing-api",
|
|
"//apps/intentsync:onos-apps-intentsync",
|
|
"//apps/route-service/api:onos-apps-route-service-api",
|
|
]
|
|
|
|
osgi_jar(
|
|
deps = COMPILE_DEPS,
|
|
)
|
|
|
|
onos_app(
|
|
category = "Traffic Engineering",
|
|
description = "SDN-IP reactive routing application.",
|
|
required_apps = [
|
|
"org.onosproject.intentsynchronizer",
|
|
"org.onosproject.sdnip",
|
|
"org.onosproject.route-service",
|
|
],
|
|
title = "SDN-IP Reactive Routing",
|
|
url = "http://onosproject.org",
|
|
)
|