blob: 4460a0c74be092e45264b15643c41ff68f1a4a7a [file] [log] [blame]
Ray Milkey5c9e2832018-06-26 18:37:12 -07001COMPILE_DEPS = CORE_DEPS + KRYO + [
2 "//drivers/default:onos-drivers-default",
3 "//apps/flowspec-api/flowapi:onos-apps-flowspec-api-flowapi",
4]
5
6osgi_jar_with_tests(
7 resources = glob(["src/main/resources/**"]),
8 resources_root = "src/main/resources",
9 test_deps = TEST_ADAPTERS,
10 deps = COMPILE_DEPS,
11)
12
13onos_app(
14 app_name = "org.onosproject.drivers.flowspec",
15 category = "Drivers",
16 description = "Adds support for devices using flow specs.",
Ray Milkey6ee38b82019-02-07 08:08:26 -080017 required_apps = [
18 "org.onosproject.drivers",
19 "org.onosproject.flowspec-api",
20 ],
Ray Milkey5c9e2832018-06-26 18:37:12 -070021 title = "Generic Flow Spec Drivers",
22 url = "http://onosproject.org",
23)