blob: bbf846ab5526ff4bcfefcccd564e36cfbac7a444 [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",
4 "//incubator/api:onos-incubator-api",
5]
6
7BUNDLES = [
Carmelo Cascone72893b72018-08-09 00:59:06 -07008 "@com_google_code_gson_gson//jar",
Ray Milkey35ea5bf2018-07-17 15:28:44 -07009 "@amqp_client//jar",
10 "//apps/rabbitmq:onos-apps-rabbitmq",
11]
12
13osgi_jar_with_tests(
14 resources = glob(["src/main/resources/**"]),
15 resources_root = "src/main/resources",
16 test_deps = TEST_ADAPTERS,
17 deps = COMPILE_DEPS,
18)
19
20onos_app(
21 category = "Integration",
22 description = "Rabbit MQ application.",
23 included_bundles = BUNDLES,
24 required_apps = ["org.onosproject.proxyarp"],
25 title = "Rabbit MQ Integration",
26 url = "http://onosproject.org",
27)