blob: 4f9237a0c4a92a06970c0ab3cda25cfc936a53a1 [file] [log] [blame]
Ray Milkey35ea5bf2018-07-17 15:28:44 -07001COMPILE_DEPS = CORE_DEPS + JACKSON + CLI + [
Ray Milkey35ea5bf2018-07-17 15:28:44 -07002 "//apps/routing-api:onos-apps-routing-api",
3 "//apps/route-service/api:onos-apps-route-service-api",
4 "//apps/intentsync:onos-apps-intentsync",
5]
6
7BUNDLES = [
8 "//apps/sdnip:onos-apps-sdnip",
9 "//apps/routing-api:onos-apps-routing-api",
10 "//apps/routing/common:onos-apps-routing-common",
11]
12
13TEST_DEPS = TEST_ADAPTERS + [
14 "//apps/routing-api:onos-apps-routing-api-tests",
15 "//apps/route-service/api:onos-apps-route-service-api-tests",
16]
17
18osgi_jar_with_tests(
Ray Milkey4efc66f2018-10-10 13:37:42 -070019 karaf_command_packages = [
20 "org.onosproject.sdnip.cli",
21 "org.onosproject.sdnip.cli.completer",
22 ],
Ray Milkey35ea5bf2018-07-17 15:28:44 -070023 test_deps = TEST_DEPS,
24 deps = COMPILE_DEPS,
25)
26
27onos_app(
28 category = "Traffic Engineering",
29 description = "SDN-IP peering application",
30 included_bundles = BUNDLES,
31 required_apps = [
32 "org.onosproject.intentsynchronizer",
33 "org.onosproject.route-service",
34 ],
35 title = "SDN-IP",
36 url = "http://onosproject.org",
37)