blob: 4111cd6f0347ceff7b716b70b733e488aef5b2a1 [file] [log] [blame]
Ray Milkey35ea5bf2018-07-17 15:28:44 -07001COMPILE_DEPS = CORE_DEPS + [
2 "@gson//jar",
3 "@amqp_client//jar",
4 "//incubator/api:onos-incubator-api",
5]
6
7BUNDLES = [
8 "@gson//jar",
9 "@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)