mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 02:11:38 +02:00
33 lines
858 B
Python
33 lines
858 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//drivers/utilities:onos-drivers-utilities',
|
|
'//protocols/netconf/api:onos-protocols-netconf-api',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//core/api:onos-api-tests',
|
|
]
|
|
|
|
BUNDLES = [
|
|
':onos-drivers-cisco-netconf',
|
|
'//drivers/utilities:onos-drivers-utilities',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
resources_root = 'src/main/resources',
|
|
resources = glob(['src/main/resources/**']),
|
|
)
|
|
|
|
onos_app (
|
|
app_name = 'org.onosproject.drivers.cisco.netconf',
|
|
title = 'Cisco NETCONF device drivers',
|
|
category = 'Drivers',
|
|
url = 'http://onosproject.org',
|
|
description = 'ONOS Cisco NETCONF device drivers application.',
|
|
included_bundles = BUNDLES,
|
|
required_apps = [ 'org.onosproject.netconf', 'org.onosproject.drivers.netconf' ],
|
|
)
|