blob: fc12811ac8aa845e0165ebf062a3cf9382051742 [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",
6 "//incubator/api:onos-incubator-api",
7]
8
9APPS = [
10 "org.onosproject.snmp",
11 "org.onosproject.optical-model",
12 "org.onosproject.faultmanagement",
13]
14
15TEST_DEPS = TEST_ADAPTERS + [
16 "//core/api:onos-api-tests",
17]
18
19osgi_jar_with_tests(
20 resources = glob(["src/main/resources/**"]),
21 resources_root = "src/main/resources",
22 test_deps = TEST_DEPS,
23 deps = COMPILE_DEPS,
24)
25
26onos_app(
27 app_name = "org.onosproject.drivers.polatis.snmp",
28 category = "Drivers",
29 description = "ONOS Polatis SNMP Device Drivers application.",
30 required_apps = APPS,
31 title = "Polatis SNMP Device Drivers",
32 url = "http://www.polatis.com",
33)