blob: ccde728ffea6053b042da008eecde5b9ed05ee56 [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]
6
7BUNDLES = [
8 "//apps/routing-api:onos-apps-routing-api",
9 ":onos-apps-pim",
10]
11
12osgi_jar_with_tests(
13 resources = glob(["src/main/resources/**"]),
14 resources_root = "src/main/resources",
15 deps = COMPILE_DEPS,
16)
17
18onos_app(
19 category = "Traffic Engineering",
20 description = "Protocol independent multicast emulation.",
21 included_bundles = BUNDLES,
22 required_apps = ["org.onosproject.route-service"],
23 title = "Protocol Independent Multicast Emulation",
24 url = "http://onosproject.org",
25)