blob: d8b95decbb14a5f496ae2bb835e2fe3bab569448 [file] [log] [blame]
Ray Milkeyf80bbb22016-03-11 10:16:22 -08001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
Ray Milkey446f4462017-08-17 15:36:01 -07003 '//lib:JACKSON',
4 '//lib:KRYO',
Ray Milkeyf80bbb22016-03-11 10:16:22 -08005 '//lib:openflowj',
Ray Milkey8dac8182016-04-28 16:44:19 -07006 '//protocols/openflow/api:onos-protocols-openflow-api',
Ray Milkeyf80bbb22016-03-11 10:16:22 -08007 '//core/store/serializers:onos-core-serializers',
8]
9
Ray Milkeye022ef62016-06-08 15:17:19 -070010TEST_DEPS = [
11 '//lib:TEST_ADAPTERS',
12 '//core/api:onos-api-tests',
13]
14
Ray Milkey61403ed2016-04-28 12:27:51 -070015osgi_jar_with_tests (
Ray Milkeyf80bbb22016-03-11 10:16:22 -080016 deps = COMPILE_DEPS,
Ray Milkeye022ef62016-06-08 15:17:19 -070017 test_deps = TEST_DEPS,
Ray Milkeyf80bbb22016-03-11 10:16:22 -080018 resources_root = 'src/main/resources',
19 resources = glob(['src/main/resources/**']),
20)
21
Ray Milkey61403ed2016-04-28 12:27:51 -070022onos_app (
Ray Milkey8dac8182016-04-28 16:44:19 -070023 app_name = 'org.onosproject.drivers',
Thomas Vachuskab0029682017-08-23 17:55:53 -070024 title = 'Default Drivers',
Ray Milkey61403ed2016-04-28 12:27:51 -070025 category = 'Drivers',
26 url = 'http://onosproject.org',
Thomas Vachuskab0029682017-08-23 17:55:53 -070027 description = 'Suite of default drivers.',
Brian O'Connorbe27bb32016-04-29 16:55:44 -070028 included_bundles = [
29 ':onos-drivers-default',
30 '//lib:openflowj',
31 '//protocols/openflow/api:onos-protocols-openflow-api',
32 ]
Ray Milkeyf80bbb22016-03-11 10:16:22 -080033)