Updating BUCK files
Change-Id: I24f279b42a270e59cf4bf4564e2aa4d81459c8e2
diff --git a/incubator/api/BUCK b/incubator/api/BUCK
index 2689f58..55f80e0 100644
--- a/incubator/api/BUCK
+++ b/incubator/api/BUCK
@@ -1,8 +1,3 @@
-SRC = 'src/main/java/org/onosproject/incubator/**/'
-TEST = 'src/test/java/org/onosproject/incubator/**/'
-CURRENT_NAME = 'onos-incubator-api'
-CURRENT_TARGET = ':' + CURRENT_NAME
-
COMPILE_DEPS = [
'//lib:CORE_DEPS',
]
@@ -11,21 +6,9 @@
'//lib:TEST_ADAPTERS',
]
-osgi_jar(
- name = CURRENT_NAME,
- srcs = glob([SRC + '/*.java']),
+osgi_jar_with_tests (
+ name = 'onos-incubator-api',
deps = COMPILE_DEPS,
+ test_deps = TEST_DEPS,
visibility = ['PUBLIC'],
)
-
-java_test(
- name = 'onos-incubator-api-tests',
- srcs = glob([TEST + '/*.java']),
- deps = COMPILE_DEPS +
- TEST_DEPS +
- [CURRENT_TARGET],
- source_under_test = [CURRENT_TARGET],
- visibility = ['PUBLIC'],
- resources_root = 'src/test/resources',
- resources = glob(['src/test/resources/**']),
-)
diff --git a/incubator/core/BUCK b/incubator/core/BUCK
index aa3a537..068a43b 100644
--- a/incubator/core/BUCK
+++ b/incubator/core/BUCK
@@ -1,8 +1,3 @@
-SRC = 'src/main/java/org/onosproject/incubator/**/'
-TEST = 'src/test/java/org/onosproject/incubator/**/'
-CURRENT_NAME = 'onos-incubator-core'
-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],
-)
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],
-)
diff --git a/incubator/store/BUCK b/incubator/store/BUCK
index d117f29..83ac2b8 100644
--- a/incubator/store/BUCK
+++ b/incubator/store/BUCK
@@ -1,8 +1,3 @@
-SRC = 'src/main/java/org/onosproject/incubator/store/**/'
-TEST = 'src/test/java/org/onosproject/incubator/store/**/'
-CURRENT_NAME = 'onos-incubator-store'
-CURRENT_TARGET = ':' + CURRENT_NAME
-
COMPILE_DEPS = [
'//lib:CORE_DEPS',
'//lib:concurrent-trees',
@@ -17,18 +12,8 @@
'//core/common:onos-core-common-tests',
]
-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],
-)