mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-12-25 03:01:26 +01:00
Change-Id: Ide25681e83d34b22393483b3b06e8834693a18ec (cherry picked from commit 5aef9826f6232d2605bbe11a97b9487c56f575a4)
41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
BUNDLES = [
|
|
"//apps/openstacknetworkingui:onos-apps-openstacknetworkingui",
|
|
"@sshd_core//jar",
|
|
]
|
|
|
|
COMPILE_DEPS = CORE_DEPS + JACKSON + CLI + REST + [
|
|
"//core/store/serializers:onos-core-serializers",
|
|
"//apps/openstacknode/api:onos-apps-openstacknode-api",
|
|
"//apps/openstacktelemetry/api:onos-apps-openstacktelemetry-api",
|
|
"//apps/openstacknetworking/api:onos-apps-openstacknetworking-api",
|
|
"//apps/openstacknetworking/app:onos-apps-openstacknetworking-app",
|
|
"@sshd_core//jar",
|
|
]
|
|
|
|
EXCLUDED_BUNDLES = [
|
|
"@sshd_core//jar",
|
|
]
|
|
|
|
TEST_DEPS = TEST_ADAPTERS + [
|
|
"//core/api:onos-api-tests",
|
|
"//core/common:onos-core-common-tests",
|
|
]
|
|
|
|
osgi_jar_with_tests(
|
|
test_deps = TEST_DEPS,
|
|
deps = COMPILE_DEPS,
|
|
)
|
|
|
|
onos_app(
|
|
app_name = "org.onosproject.openstacknetworkingui",
|
|
category = "GUI",
|
|
description = "Openstack Networking UI Service",
|
|
excluded_bundles = EXCLUDED_BUNDLES,
|
|
included_bundles = BUNDLES,
|
|
required_apps = [
|
|
"org.onosproject.openstacknetworking",
|
|
],
|
|
title = "Openstack Networking UI",
|
|
url = "http://onosproject.org",
|
|
)
|