mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-21 04:12:23 +02:00
cli core incubator/rpc pipelines/basic protocols/netconf protocols/openflow protocols/rest Change-Id: I165b94a04ba893d97d944e5deb2746f54566503b
28 lines
735 B
Python
28 lines
735 B
Python
COMPILE_DEPS = CORE_DEPS + [
|
|
"@minimal_json//jar",
|
|
"//drivers/default:onos-drivers-default",
|
|
"//protocols/p4runtime/model:onos-protocols-p4runtime-model",
|
|
"//protocols/p4runtime/api:onos-protocols-p4runtime-api",
|
|
]
|
|
|
|
BUNDLES = [
|
|
"//pipelines/basic:onos-pipelines-basic",
|
|
]
|
|
|
|
osgi_jar(
|
|
deps = COMPILE_DEPS,
|
|
)
|
|
|
|
#onos_app(
|
|
# app_name = 'org.onosproject.pipelines.basic',
|
|
# title = 'Basic Pipelines',
|
|
# category = 'Pipeline',
|
|
# url = 'http://onosproject.org',
|
|
# description = 'Provides pipelines with basic L2/L3 forwarding capabilities and packet-in/out '
|
|
# + 'support.',
|
|
# included_bundles = BUNDLES,
|
|
# required_apps = [
|
|
# 'org.onosproject.drivers.p4runtime',
|
|
# ]
|
|
#)
|