blob: d1a3ba2d4e0725ac25bda05e9729bd423578d1e4 [file] [log] [blame]
Ray Milkey35ea5bf2018-07-17 15:28:44 -07001COMPILE_DEPS = CORE_DEPS + JACKSON + [
2 "//incubator/api:onos-incubator-api",
3 "//apps/routing-api:onos-apps-routing-api",
4]
5
6BUNDLES = [
7 "//apps/routing-api:onos-apps-routing-api",
8 "//apps/routing/common:onos-apps-routing-common",
9 "//apps/bgprouter:onos-apps-bgprouter",
10]
11
12osgi_jar(
13 deps = COMPILE_DEPS,
14)
15
16onos_app(
17 category = "Traffic Engineering",
18 description = "BGP router application.",
19 included_bundles = BUNDLES,
20 required_apps = [
21 "org.onosproject.fibinstaller",
22 "org.onosproject.route-service",
23 ],
24 title = "BGP Router",
25 url = "http://onosproject.org",
26)