blob: 4e4944a9f681be2396ca6d6f0db7e6f04152758d [file] [log] [blame]
Ray Milkey257eb6d2018-07-17 09:41:00 -07001COMPILE_DEPS = CORE_DEPS + [
2 "@org_apache_servicemix_bundles_snmp4j//jar",
3 "//drivers/utilities:onos-drivers-utilities",
4 "//protocols/snmp/api:onos-protocols-snmp-api",
5 "//apps/optical-model:onos-apps-optical-model",
Ray Milkey257eb6d2018-07-17 09:41:00 -07006]
7
8APPS = [
9 "org.onosproject.snmp",
10 "org.onosproject.optical-model",
11 "org.onosproject.faultmanagement",
12]
13
14TEST_DEPS = TEST_ADAPTERS + [
15 "//core/api:onos-api-tests",
16]
17
18osgi_jar_with_tests(
19 resources = glob(["src/main/resources/**"]),
20 resources_root = "src/main/resources",
21 test_deps = TEST_DEPS,
22 deps = COMPILE_DEPS,
23)
24
25onos_app(
26 app_name = "org.onosproject.drivers.polatis.snmp",
27 category = "Drivers",
28 description = "ONOS Polatis SNMP Device Drivers application.",
29 required_apps = APPS,
30 title = "Polatis SNMP Device Drivers",
31 url = "http://www.polatis.com",
32)