blob: 3eab5a8b1911d4a8285cfeef6492cd424cb5bb4d [file] [log] [blame]
Ray Milkeyf80bbb22016-03-11 10:16:22 -08001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
Ray Milkey446f4462017-08-17 15:36:01 -07003 '//lib:JACKSON',
Ray Milkeyf80bbb22016-03-11 10:16:22 -08004 '//lib:org.apache.karaf.shell.console',
5 '//cli:onos-cli',
6 '//incubator/api:onos-incubator-api',
Ray Milkey24439fe2016-04-08 21:50:55 -07007 '//apps/routing-api:onos-apps-routing-api',
Ray Milkey69ec8712017-08-08 13:00:43 -07008 '//apps/route-service/api:onos-apps-route-service-api',
Ray Milkeyf80bbb22016-03-11 10:16:22 -08009]
10
Ray Milkeyf9a76972016-04-12 09:47:12 -070011BUNDLES = [
12 '//apps/routing-api:onos-apps-routing-api',
13 ':onos-apps-pim',
Ray Milkeyf80bbb22016-03-11 10:16:22 -080014]
15
Ray Milkeyf9a76972016-04-12 09:47:12 -070016osgi_jar_with_tests (
Ray Milkeyf80bbb22016-03-11 10:16:22 -080017 deps = COMPILE_DEPS,
Ray Milkeyf80bbb22016-03-11 10:16:22 -080018 resources_root = 'src/main/resources',
19 resources = glob(['src/main/resources/**']),
20)
21
Ray Milkeyf9a76972016-04-12 09:47:12 -070022onos_app (
Thomas Vachuskab0029682017-08-23 17:55:53 -070023 title = 'Protocol Independent Multicast Emulation',
Thomas Vachuskaca0b5df2018-06-22 16:24:47 -070024 category = 'Traffic Engineering',
Ray Milkeyf9a76972016-04-12 09:47:12 -070025 url = 'http://onosproject.org',
26 description = 'Protocol independent multicast emulation.',
27 included_bundles = BUNDLES,
Ray Milkey69ec8712017-08-08 13:00:43 -070028 required_apps = [ 'org.onosproject.route-service' ],
Ray Milkeyf80bbb22016-03-11 10:16:22 -080029)