mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 09:21:06 +02:00
20 lines
659 B
Python
20 lines
659 B
Python
BUNDLES = [
|
|
'//protocols/xmpp/core/api:onos-protocols-xmpp-core-api',
|
|
'//protocols/xmpp/pubsub/api:onos-protocols-xmpp-pubsub-api',
|
|
'//protocols/xmpp/pubsub/ctl:onos-protocols-xmpp-pubsub-ctl',
|
|
'//lib:tinder-xmpp',
|
|
'//lib:concurrent-hashmap',
|
|
'//lib:gnu-idn',
|
|
]
|
|
|
|
onos_app(
|
|
app_name = 'org.onosproject.protocols.xmpp.pubsub',
|
|
title = 'XMPP Publish/Subscribe protocol extension subsystem',
|
|
category = 'Protocol',
|
|
url = 'http://onosproject.org',
|
|
description = 'XMPP Publish/Subscribe protocol extension subsystem',
|
|
included_bundles = BUNDLES,
|
|
required_apps = [
|
|
'org.onosproject.protocols.xmpp',
|
|
]
|
|
) |