blob: 5d9a3caabc8a6951e60cc67f73c6b29a802bcdd5 [file] [log] [blame]
Ray Milkey39332952018-07-16 13:42:51 -07001COMPILE_DEPS = CORE_DEPS + JACKSON + KRYO + CLI + [
2 "//core/store/serializers:onos-core-serializers",
3 "//apps/route-service/api:onos-apps-route-service-api",
4 "//apps/routing/fpm/api:onos-apps-routing-fpm-api",
5]
6
7TEST_DEPS = TEST + [
8 "//apps/route-service/api:onos-apps-route-service-api-tests",
9 "//core/api:onos-api-tests",
10]
11
12BUNDLES = [
13 "//apps/dhcprelay:onos-apps-dhcprelay",
14 "//apps/routing/fpm/api:onos-apps-routing-fpm-api",
15]
16
17osgi_jar_with_tests(
Ray Milkey58dd64e2018-10-03 11:30:46 -070018 karaf_command_packages = ["org.onosproject.dhcprelay.cli"],
Ray Milkey39332952018-07-16 13:42:51 -070019 test_deps = TEST_DEPS,
20 deps = COMPILE_DEPS,
21)
22
23onos_app(
24 app_name = "org.onosproject.dhcprelay",
25 category = "Utility",
26 description = "DHCP Relay Agent Application.",
27 included_bundles = BUNDLES,
28 required_apps = ["org.onosproject.route-service"],
29 title = "DHCP Relay Agent",
30 url = "http://onosproject.org",
31)