mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 17:31:31 +02:00
27 lines
665 B
Python
27 lines
665 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
'//cli:onos-cli',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//apps/routing-api:onos-apps-routing-api',
|
|
]
|
|
|
|
BUNDLES = [
|
|
'//apps/routing-api:onos-apps-routing-api',
|
|
':onos-apps-pim',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
resources_root = 'src/main/resources',
|
|
resources = glob(['src/main/resources/**']),
|
|
)
|
|
|
|
onos_app (
|
|
title = 'Protocol Independent Multicast Emulation App',
|
|
category = 'Traffic Steering',
|
|
url = 'http://onosproject.org',
|
|
description = 'Protocol independent multicast emulation.',
|
|
included_bundles = BUNDLES,
|
|
)
|