Bugfix: fix InfluxdbMetrics activation issue due to incorrect deps
Change-Id: I1e14119eb753e93d419f006c953f170ff6473965
diff --git a/apps/influxdbmetrics/BUCK b/apps/influxdbmetrics/BUCK
index 017443e..2f27aa1 100644
--- a/apps/influxdbmetrics/BUCK
+++ b/apps/influxdbmetrics/BUCK
@@ -3,16 +3,22 @@
'//lib:org.apache.karaf.shell.console',
'//lib:metrics-influxdb',
'//lib:influxdb-java',
+ '//lib:commons-codec',
+ '//lib:retrofit',
+ '//lib:okhttp',
+ '//lib:okio',
+ '//lib:gson',
'//cli:onos-cli',
]
EXCLUDED_BUNDLES = [
'//lib:metrics-influxdb',
'//lib:influxdb-java',
-]
-
-BUNDLES = [
'//lib:commons-codec',
+ '//lib:retrofit',
+ '//lib:okhttp',
+ '//lib:gson',
+ '//lib:okio',
]
TEST_DEPS = [
@@ -29,6 +35,5 @@
category = 'Monitoring',
url = 'http://onosproject.org',
description = 'Performance metric service reporter and retriever for influxDB.',
- included_bundles = BUNDLES,
excluded_bundles = EXCLUDED_BUNDLES,
)