blob: 99bf22307868046995e5d9ff5097d011d41318ef [file] [log] [blame]
Ray Milkeyf80bbb22016-03-11 10:16:22 -08001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//lib:openflowj',
Ray Milkey8dac8182016-04-28 16:44:19 -07004 '//protocols/openflow/api:onos-protocols-openflow-api',
Ray Milkeyf80bbb22016-03-11 10:16:22 -08005 '//core/store/serializers:onos-core-serializers',
6]
7
Ray Milkeye022ef62016-06-08 15:17:19 -07008TEST_DEPS = [
9 '//lib:TEST_ADAPTERS',
10 '//core/api:onos-api-tests',
11]
12
Ray Milkey61403ed2016-04-28 12:27:51 -070013osgi_jar_with_tests (
Ray Milkeyf80bbb22016-03-11 10:16:22 -080014 deps = COMPILE_DEPS,
Ray Milkeye022ef62016-06-08 15:17:19 -070015 test_deps = TEST_DEPS,
Ray Milkeyf80bbb22016-03-11 10:16:22 -080016 resources_root = 'src/main/resources',
17 resources = glob(['src/main/resources/**']),
18)
19
Ray Milkey61403ed2016-04-28 12:27:51 -070020onos_app (
Ray Milkey8dac8182016-04-28 16:44:19 -070021 app_name = 'org.onosproject.drivers',
Thomas Vachuska7c45e282017-08-23 17:55:53 -070022 title = 'Default Drivers',
Ray Milkey61403ed2016-04-28 12:27:51 -070023 category = 'Drivers',
24 url = 'http://onosproject.org',
Thomas Vachuska7c45e282017-08-23 17:55:53 -070025 description = 'Suite of default drivers.',
Brian O'Connorbe27bb32016-04-29 16:55:44 -070026 included_bundles = [
27 ':onos-drivers-default',
28 '//lib:openflowj',
29 '//protocols/openflow/api:onos-protocols-openflow-api',
30 ]
Ray Milkeyf80bbb22016-03-11 10:16:22 -080031)