mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 01:11:30 +02:00
21 lines
661 B
Python
21 lines
661 B
Python
BUNDLES = [
|
|
"@tinder_xmpp//jar",
|
|
"@concurrent_hashmap//jar",
|
|
"@gnu_idn//jar",
|
|
"//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",
|
|
]
|
|
|
|
onos_app(
|
|
app_name = "org.onosproject.protocols.xmpp.pubsub",
|
|
category = "Protocol",
|
|
description = "XMPP Publish/Subscribe protocol extension subsystem",
|
|
included_bundles = BUNDLES,
|
|
required_apps = [
|
|
"org.onosproject.protocols.xmpp",
|
|
],
|
|
title = "XMPP Publish/Subscribe protocol extension subsystem",
|
|
url = "http://onosproject.org",
|
|
)
|