mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-14 08:51:01 +02:00
24 lines
740 B
Python
24 lines
740 B
Python
BUNDLES = [
|
|
"@tinder_xmpp//jar",
|
|
"@org_apache_servicemix_bundles_dom4j//jar",
|
|
"@io_netty_netty_common//jar",
|
|
"@io_netty_netty_transport//jar",
|
|
"@io_netty_netty_buffer//jar",
|
|
"@io_netty_netty_codec//jar",
|
|
"@stax2_api//jar",
|
|
"@aalto_xml//jar",
|
|
"@concurrent_hashmap//jar",
|
|
"@gnu_idn//jar",
|
|
"//protocols/xmpp/core/api:onos-protocols-xmpp-core-api",
|
|
"//protocols/xmpp/core/ctl:onos-protocols-xmpp-core-ctl",
|
|
]
|
|
|
|
onos_app(
|
|
app_name = "org.onosproject.protocols.xmpp",
|
|
category = "Protocol",
|
|
description = "ONOS XMPP core protocol subsystem",
|
|
included_bundles = BUNDLES,
|
|
title = "XMPP Core Protocol Subsystem",
|
|
url = "https://wiki.onosproject.org/display/ONOS/XMPP+as+SBI",
|
|
)
|