mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-16 09:51:38 +02:00
35 lines
691 B
Python
35 lines
691 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
'//lib:metrics-influxdb',
|
|
'//lib:influxdb-java',
|
|
'//cli:onos-cli',
|
|
]
|
|
|
|
EXCLUDED_BUNDLES = [
|
|
'//lib:metrics-influxdb',
|
|
'//lib:influxdb-java',
|
|
]
|
|
|
|
BUNDLES = [
|
|
'//lib:commons-codec',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
)
|
|
|
|
onos_app (
|
|
title = 'InfluxDB Report and Query App',
|
|
category = 'Monitoring',
|
|
url = 'http://onosproject.org',
|
|
description = 'Performance metric service reporter and retriever for influxDB.',
|
|
included_bundles = BUNDLES,
|
|
excluded_bundles = EXCLUDED_BUNDLES,
|
|
)
|