mirror of
https://github.com/opennetworkinglab/onos.git
synced 2026-01-03 07:31:48 +01:00
31 lines
899 B
Python
31 lines
899 B
Python
GRPC_VER = '1.3.1'
|
|
|
|
BUNDLES = [
|
|
'//lib:kafka-clients',
|
|
'//lib:influxdb-java',
|
|
'//lib:commons-codec',
|
|
'//lib:retrofit',
|
|
'//lib:okhttp',
|
|
'//lib:logging-interceptor',
|
|
'//lib:gson',
|
|
'//lib:okio',
|
|
'//lib:moshi',
|
|
'//lib:converter-moshi',
|
|
'//lib:protobuf-java-3.2.0',
|
|
'//incubator/grpc-dependencies:grpc-core-repkg-' + GRPC_VER,
|
|
'//lib:google-instrumentation-0.3.0',
|
|
'//apps/openstacktelemetry/api:onos-apps-openstacktelemetry-api',
|
|
'//apps/openstacktelemetry/app:onos-apps-openstacktelemetry-app',
|
|
]
|
|
|
|
onos_app (
|
|
title = 'OpenStack Telemetry Application',
|
|
category = 'Integration',
|
|
url = 'https://wiki.onosproject.org/display/ONOS/SONA%3A+DC+Network+Virtualization',
|
|
included_bundles = BUNDLES,
|
|
description = 'SONA Openstack Telemetry Application.',
|
|
required_apps = [
|
|
'org.onosproject.openstacknetworking'
|
|
]
|
|
)
|