blob: 888a1d2c1b148762fe6519dc8ca313c487374744 [file] [log] [blame]
Ray Milkey35ea5bf2018-07-17 15:28:44 -07001COMPILE_DEPS = CORE_DEPS + JACKSON + CLI + [
Ray Milkey35ea5bf2018-07-17 15:28:44 -07002 "//apps/routing-api:onos-apps-routing-api",
3 "//apps/route-service/api:onos-apps-route-service-api",
4]
5
6BUNDLES = [
7 "//apps/routing-api:onos-apps-routing-api",
8 ":onos-apps-pim",
9]
10
11osgi_jar_with_tests(
Ray Milkey39e55df2018-10-09 16:32:50 -070012 karaf_command_packages = ["org.onosproject.pim.cli"],
Ray Milkey35ea5bf2018-07-17 15:28:44 -070013 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)