mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-24 13:51:27 +02:00
- net and cli bundle has dependency to optical-model bundle, which should be removed in the longer run. (ONOS-4626) Change-Id: Ieff43ef2002ee21f4578a6e2a729cd35ce3eae3d
30 lines
879 B
Python
30 lines
879 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:org.apache.servicemix.bundles.snmp4j',
|
|
'//drivers/utilities:onos-drivers-utilities',
|
|
'//protocols/snmp/api:onos-protocols-snmp-api',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//apps/optical-model:onos-apps-optical-model',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//core/api:onos-api-tests',
|
|
]
|
|
|
|
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.lumentum',
|
|
title = 'Lumentum Device Drivers',
|
|
category = 'Drivers',
|
|
url = 'http://onosproject.org',
|
|
description = 'ONOS Lumentum Device Drivers application.',
|
|
required_apps = [ 'org.onosproject.snmp', 'org.onosproject.faultmanagement', 'org.onosproject.optical-model' ],
|
|
)
|