blob: 861fe8ea972653f89e07bac657dc4fd56d0ebb65 [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(
20 test_deps = TEST_DEPS,
21 deps = COMPILE_DEPS,
22)
23
24onos_app(
25 category = "Traffic Engineering",
26 description = "SDN-IP peering application",
27 included_bundles = BUNDLES,
28 required_apps = [
29 "org.onosproject.intentsynchronizer",
30 "org.onosproject.route-service",
31 ],
32 title = "SDN-IP",
33 url = "http://onosproject.org",
34)