onos/apps/sdnip/BUILD
Ray Milkey 4efc66f584 SDN IP app changes for karaf 4.2.1 CLI
Change-Id: I9c03a2148257e7f7122a1135a7a68cdfac50b297
2018-10-10 13:37:42 -07:00

39 lines
1.0 KiB
Python

COMPILE_DEPS = CORE_DEPS + JACKSON + CLI + [
"//incubator/api:onos-incubator-api",
"//apps/routing-api:onos-apps-routing-api",
"//apps/route-service/api:onos-apps-route-service-api",
"//apps/intentsync:onos-apps-intentsync",
]
BUNDLES = [
"//apps/sdnip:onos-apps-sdnip",
"//apps/routing-api:onos-apps-routing-api",
"//apps/routing/common:onos-apps-routing-common",
]
TEST_DEPS = TEST_ADAPTERS + [
"//apps/routing-api:onos-apps-routing-api-tests",
"//apps/route-service/api:onos-apps-route-service-api-tests",
]
osgi_jar_with_tests(
karaf_command_packages = [
"org.onosproject.sdnip.cli",
"org.onosproject.sdnip.cli.completer",
],
test_deps = TEST_DEPS,
deps = COMPILE_DEPS,
)
onos_app(
category = "Traffic Engineering",
description = "SDN-IP peering application",
included_bundles = BUNDLES,
required_apps = [
"org.onosproject.intentsynchronizer",
"org.onosproject.route-service",
],
title = "SDN-IP",
url = "http://onosproject.org",
)