mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-12-25 03:01:26 +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
18 lines
455 B
Python
18 lines
455 B
Python
COMPILE_DEPS = CORE_DEPS + JACKSON + METRICS + [
|
|
"@org_apache_karaf_shell_core//jar",
|
|
"//utils/rest:onlab-rest",
|
|
"//core/common:onos-core-common",
|
|
]
|
|
|
|
osgi_jar(
|
|
karaf_command_packages = [
|
|
"org.onosproject.cli",
|
|
"org.onosproject.cli.app",
|
|
"org.onosproject.cli.cfg",
|
|
"org.onosproject.cli.net",
|
|
"org.onosproject.cli.security",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = COMPILE_DEPS,
|
|
)
|