blob: 7f3da953627cb443521ece0ab7a224fe953b960e [file] [log] [blame]
Ray Milkey35ea5bf2018-07-17 15:28:44 -07001COMPILE_DEPS = CORE_DEPS + [
Carmelo Cascone72893b72018-08-09 00:59:06 -07002 "@com_google_code_gson_gson//jar",
Ray Milkey35ea5bf2018-07-17 15:28:44 -07003 "@amqp_client//jar",
Ray Milkey35ea5bf2018-07-17 15:28:44 -07004]
5
6BUNDLES = [
Carmelo Cascone72893b72018-08-09 00:59:06 -07007 "@com_google_code_gson_gson//jar",
Ray Milkey35ea5bf2018-07-17 15:28:44 -07008 "@amqp_client//jar",
9 "//apps/rabbitmq:onos-apps-rabbitmq",
10]
11
12osgi_jar_with_tests(
13 resources = glob(["src/main/resources/**"]),
14 resources_root = "src/main/resources",
15 test_deps = TEST_ADAPTERS,
16 deps = COMPILE_DEPS,
17)
18
19onos_app(
20 category = "Integration",
21 description = "Rabbit MQ application.",
22 included_bundles = BUNDLES,
23 required_apps = ["org.onosproject.proxyarp"],
24 title = "Rabbit MQ Integration",
25 url = "http://onosproject.org",
26)