blob: 07a729f1083305cc58a63012159017e338c8cb14 [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(
Ray Milkey39e55df2018-10-09 16:32:50 -070013 karaf_command_packages = ["org.onosproject.pim.cli"],
Ray Milkey35ea5bf2018-07-17 15:28:44 -070014 resources = glob(["src/main/resources/**"]),
15 resources_root = "src/main/resources",
16 deps = COMPILE_DEPS,
17)
18
19onos_app(
20 category = "Traffic Engineering",
21 description = "Protocol independent multicast emulation.",
22 included_bundles = BUNDLES,
23 required_apps = ["org.onosproject.route-service"],
24 title = "Protocol Independent Multicast Emulation",
25 url = "http://onosproject.org",
26)