mirror of
https://github.com/opennetworkinglab/onos.git
synced 2026-01-04 08:01:46 +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
33 lines
833 B
Python
33 lines
833 B
Python
COMPILE_DEPS = CORE_DEPS + JACKSON + [
|
|
"@javax_ws_rs_api//jar",
|
|
"@joda_time//jar",
|
|
"//utils/rest:onlab-rest",
|
|
"//protocols/rest/api:onos-protocols-rest-api",
|
|
]
|
|
|
|
BUNDLES = [
|
|
":onos-drivers-server",
|
|
]
|
|
|
|
REQUIRED_APPS = [
|
|
"org.onosproject.restsb",
|
|
]
|
|
|
|
osgi_jar_with_tests(
|
|
resources = glob(["src/main/resources/**"]),
|
|
resources_root = "src/main/resources",
|
|
test_deps = TEST_ADAPTERS,
|
|
deps = COMPILE_DEPS,
|
|
)
|
|
|
|
onos_app(
|
|
app_name = "org.onosproject.drivers.server",
|
|
category = "Drivers",
|
|
description = "ONOS southbound drivers for commodity servers",
|
|
included_bundles = BUNDLES,
|
|
origin = "KTH Royal Institute of Technology & RISE SICS",
|
|
required_apps = REQUIRED_APPS,
|
|
title = "Server Device Drivers",
|
|
url = "https://github.com/gkatsikas/onos/tree/metron-driver",
|
|
)
|