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