blob: 8fcdaa57c14dfa3970915b7b21a728f95cd905c1 [file] [log] [blame]
Ray Milkey35ea5bf2018-07-17 15:28:44 -07001COMPILE_DEPS = CORE_DEPS + [
2 "//incubator/api:onos-incubator-api",
3 "//apps/routing-api:onos-apps-routing-api",
4]
5
6TEST_DEPS = TEST_ADAPTERS + [
7 "//incubator/api:onos-incubator-api-tests",
8 "//apps/routing-api:onos-apps-routing-api-tests",
9 "//utils/osgi:onlab-osgi-tests",
10]
11
12osgi_jar_with_tests(
13 test_deps = TEST_DEPS,
14 deps = COMPILE_DEPS,
15)
16
17BUNDLES = [
18 "//apps/routing/common:onos-apps-routing-common",
19 "//apps/routing/cpr:onos-apps-routing-cpr",
20 "//apps/routing-api:onos-apps-routing-api",
21]
22
23onos_app(
24 app_name = "org.onosproject.cpr",
25 category = "Traffic Engineering",
26 description = "Redirects routing control traffic to a control plane",
27 included_bundles = BUNDLES,
28 title = "Control Plane Redirect",
29 url = "http://onosproject.org",
30)