blob: c2fea21de1aa1e5aff4cd56a91bdb2338a33a2d3 [file] [log] [blame]
Ray Milkeyf80bbb22016-03-11 10:16:22 -08001SRC_DEPS = [
2 '//lib:junit',
3 '//lib:hamcrest-all',
4 '//lib:guava',
5]
6
7TEST_DEPS = [
8 '//lib:guava-testlib',
9]
10
Brian O'Connor7c11a982016-10-18 15:02:27 -070011osgi_jar_with_tests(
12 name = 'onlab-junit',
Ray Milkeyf80bbb22016-03-11 10:16:22 -080013 srcs = glob([SRC + '/*.java']),
14 deps = SRC_DEPS,
Brian O'Connor7c11a982016-10-18 15:02:27 -070015 test_deps = TEST_DEPS,
Ray Milkeyf80bbb22016-03-11 10:16:22 -080016 visibility = ['PUBLIC'],
17 resources_root = 'src/main/resources',
18 resources = glob(['src/main/resources/**']),
Ray Milkey2a749832016-08-02 15:22:20 -070019 package_name_root = 'org.onlab',
Ray Milkeyf80bbb22016-03-11 10:16:22 -080020)