Updating BUCK files

Change-Id: I24f279b42a270e59cf4bf4564e2aa4d81459c8e2
diff --git a/incubator/rpc/BUCK b/incubator/rpc/BUCK
index 52945d8..068a43b 100644
--- a/incubator/rpc/BUCK
+++ b/incubator/rpc/BUCK
@@ -1,8 +1,3 @@
-SRC = 'src/main/java/org/onosproject/incubator/**/'
-TEST = 'src/test/java/org/onosproject/incubator/**/'
-CURRENT_NAME = 'onos-incubator-rpc'
-CURRENT_TARGET = ':' + CURRENT_NAME
-
 COMPILE_DEPS = [
     '//lib:CORE_DEPS',
     '//incubator/api:onos-incubator-api',
@@ -12,18 +7,8 @@
     '//lib:TEST',
 ]
 
-osgi_jar(
-    name = CURRENT_NAME,
-    srcs = glob([SRC + '/*.java']),
+osgi_jar_with_tests (
     deps = COMPILE_DEPS,
+    test_deps = TEST_DEPS,
     visibility = ['PUBLIC'],
 )
-
-java_test(
-    name = 'tests',
-    srcs = glob([TEST + '/*.java']),
-    deps = COMPILE_DEPS +
-           TEST_DEPS +
-           [CURRENT_TARGET],
-    source_under_test = [CURRENT_TARGET],
-)