blob: ccb093f4af74f24198df5860e5d1eacc4f9b995d [file] [log] [blame]
Ray Milkey7dac7da2017-08-01 16:56:05 -07001COMPILE_DEPS = CORE_DEPS + JACKSON + KRYO + [
Ray Milkey0bcdfd12018-05-23 14:07:19 -07002 "@openflowj//jar",
3 "//protocols/openflow/api:onos-protocols-openflow-api",
4 "//core/store/serializers:onos-core-serializers",
Ray Milkey7dac7da2017-08-01 16:56:05 -07005]
6
Thomas Vachuska41c652c2018-06-27 16:01:36 -07007BUNDLES = [
8 ":onos-drivers-default",
9 "@openflowj//jar",
10 "//protocols/openflow/api:onos-protocols-openflow-api",
Ray Milkey7dac7da2017-08-01 16:56:05 -070011]
12
Ray Milkey0bcdfd12018-05-23 14:07:19 -070013osgi_jar_with_tests(
Ray Milkey0bcdfd12018-05-23 14:07:19 -070014 resources = glob(["src/main/resources/**"]),
Thomas Vachuska41c652c2018-06-27 16:01:36 -070015 test_deps = TEST_ADAPTERS,
Ray Milkey7dac7da2017-08-01 16:56:05 -070016 visibility = ["//visibility:public"],
Ray Milkey0bcdfd12018-05-23 14:07:19 -070017 deps = COMPILE_DEPS,
Ray Milkey7dac7da2017-08-01 16:56:05 -070018)
Thomas Vachuska41c652c2018-06-27 16:01:36 -070019
20onos_app(
21 app_name = "org.onosproject.drivers",
22 category = "Drivers",
23 description = "Suite of default drivers.",
24 included_bundles = BUNDLES,
25 title = "Default Drivers",
26 url = "http://onosproject.org",
Ray Milkey0250a082018-06-27 17:36:01 -070027)