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