blob: 956419e62c6413b15a135d121893cd5ec63d8a53 [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(
18 test_deps = TEST_DEPS,
19 deps = COMPILE_DEPS,
20)
21
22onos_app(
23 app_name = "org.onosproject.dhcprelay",
24 category = "Utility",
25 description = "DHCP Relay Agent Application.",
26 included_bundles = BUNDLES,
27 required_apps = ["org.onosproject.route-service"],
28 title = "DHCP Relay Agent",
29 url = "http://onosproject.org",
30)