blob: 704ad3dd8ef53d4221b96f463a1d8106be5890ed [file] [log] [blame]
Laszlo Papp86455232018-03-13 14:32:56 +00001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//lib:openflowj',
4 '//protocols/openflow/api:onos-protocols-openflow-api',
5 '//apps/optical-model:onos-apps-optical-model',
6]
7
8APPS = [
9 'org.onosproject.drivers.optical',
10 'org.onosproject.optical-model',
11]
12
13TEST_DEPS = [
14 '//lib:TEST_ADAPTERS',
15 '//core/api:onos-api-tests',
16 '//utils/osgi:onlab-osgi-tests',
17]
18
19osgi_jar_with_tests (
20 deps = COMPILE_DEPS,
21 test_deps = TEST_DEPS,
22 resources_root = 'src/main/resources',
23 resources = glob(['src/main/resources/**']),
24)
25
26onos_app (
27 app_name = 'org.onosproject.drivers.polatis.openflow',
28 title = 'Polatis OpenFlow Device Drivers',
29 category = 'Drivers',
30 url = 'http://www.polatis.com',
31 description = 'ONOS Polatis OpenFlow Device Drivers application.',
32 required_apps = APPS
33)
34