mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 09:21:06 +02:00
22 lines
438 B
Python
22 lines
438 B
Python
SRC_DEPS = [
|
|
'//lib:junit',
|
|
'//lib:hamcrest-all',
|
|
'//lib:guava',
|
|
'//lib:slf4j-api',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:guava-testlib',
|
|
]
|
|
|
|
osgi_jar_with_tests(
|
|
name = 'onlab-junit',
|
|
srcs = glob([SRC + '/*.java']),
|
|
deps = SRC_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
visibility = ['PUBLIC'],
|
|
resources_root = 'src/main/resources',
|
|
resources = glob(['src/main/resources/**']),
|
|
package_name_root = 'org.onlab',
|
|
)
|