mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-12-25 11:11:47 +01:00
28 lines
738 B
Python
28 lines
738 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
'//cli:onos-cli',
|
|
'//protocols/ovsdb/api:onos-protocols-ovsdb-api',
|
|
'//protocols/ovsdb/rfc:onos-protocols-ovsdb-rfc',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//core/api:onos-api-tests',
|
|
'//core/common:onos-core-common-tests',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
)
|
|
|
|
onos_app (
|
|
title = 'OpenStack Node Bootstrap App',
|
|
category = 'Utility',
|
|
url = 'http://onosproject.org',
|
|
description = 'SONA Openstack Node Bootstrap Application.',
|
|
required_apps = [ 'org.onosproject.ovsdb-base', 'org.onosproject.drivers.ovsdb' ]
|
|
)
|