Refactor buck external dependencies

Change-Id: Ia4b99493407eb7d4e893804cba6b944f758f085e
diff --git a/incubator/api/BUCK b/incubator/api/BUCK
index 55f80e0..eb7b036 100644
--- a/incubator/api/BUCK
+++ b/incubator/api/BUCK
@@ -1,5 +1,6 @@
 COMPILE_DEPS = [
     '//lib:CORE_DEPS',
+    '//lib:JACKSON',
 ]
 
 TEST_DEPS = [
diff --git a/incubator/bmv2/model/BUCK b/incubator/bmv2/model/BUCK
index 9f313b6..53bfb14 100644
--- a/incubator/bmv2/model/BUCK
+++ b/incubator/bmv2/model/BUCK
@@ -1,5 +1,6 @@
 COMPILE_DEPS = [
-  '//lib:CORE_DEPS'
+  '//lib:CORE_DEPS',
+  '//lib:minimal-json',
 ]
 
 osgi_jar_with_tests (
diff --git a/incubator/net/BUCK b/incubator/net/BUCK
index 5d12d77..902434a 100644
--- a/incubator/net/BUCK
+++ b/incubator/net/BUCK
@@ -1,5 +1,8 @@
 COMPILE_DEPS = [
     '//lib:CORE_DEPS',
+    '//lib:JACKSON',
+    '//lib:METRICS',
+    '//lib:KRYO',
     '//core/common:onos-core-common',
     '//incubator/api:onos-incubator-api',
     '//incubator/store:onos-incubator-store',
diff --git a/incubator/store/BUCK b/incubator/store/BUCK
index 83ac2b8..84c5d47 100644
--- a/incubator/store/BUCK
+++ b/incubator/store/BUCK
@@ -1,9 +1,11 @@
 COMPILE_DEPS = [
     '//lib:CORE_DEPS',
+    '//lib:KRYO',
     '//lib:concurrent-trees',
     '//incubator/api:onos-incubator-api',
     '//core/store/dist:onos-core-dist',
-    '//core/store/serializers:onos-core-serializers'
+    '//core/store/serializers:onos-core-serializers',
+    '//lib:joda-time',
 ]
 
 TEST_DEPS = [