blob: 1f2dd66cffb9000dfa76c41d6d1592f09b4d08ac [file] [log] [blame]
Ray Milkey18fb0812018-06-21 10:32:53 -07001COMPILE_DEPS = CORE_DEPS + METRICS + [
2 "@openflowj//jar",
3 "//protocols/openflow/api:onos-protocols-openflow-api",
4 "//apps/cpman/api:onos-apps-cpman-api",
5]
6
7BUNDLES = [
8 "//apps/cpman/api:onos-apps-cpman-api",
9 ":onos-providers-openflow-message",
10]
11
12osgi_jar_with_tests(
13 exclude_tests = [
14 "org.onosproject.provider.of.message.impl.OpenFlowControlMessageProviderTest",
15 ],
16 deps = COMPILE_DEPS,
17)
18
19onos_app(
20 app_name = "org.onosproject.openflow-message",
21 category = "Provider",
22 description = "ONOS OpenFlow control message provider.",
23 included_bundles = BUNDLES,
24 title = "Control Message Stats Provider",
25 url = "http://onosproject.org",
26)