Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
| 3 | '//lib:org.apache.servicemix.bundles.snmp4j', |
| 4 | '//drivers/utilities:onos-drivers-utilities', |
Ray Milkey | 8dac818 | 2016-04-28 16:44:19 -0700 | [diff] [blame] | 5 | '//protocols/snmp/api:onos-protocols-snmp-api', |
Marc De Leenheer | 57a5af0 | 2016-12-02 20:54:41 -0800 | [diff] [blame] | 6 | '//protocols/tl1/api:onos-protocols-tl1-api', |
Alessio Giorgetti | 648b538 | 2018-02-15 18:35:45 +0100 | [diff] [blame] | 7 | '//protocols/netconf/api:onos-protocols-netconf-api', |
Andrea Campanella | bb8775b | 2016-04-12 10:32:14 -0700 | [diff] [blame] | 8 | '//incubator/api:onos-incubator-api', |
HIGUCHI Yuta | f3ead25 | 2016-05-12 18:18:15 -0700 | [diff] [blame] | 9 | '//apps/optical-model:onos-apps-optical-model', |
Marc De Leenheer | 40a544b | 2017-04-25 14:16:02 -0700 | [diff] [blame] | 10 | '//drivers/optical:onos-drivers-optical', |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 11 | ] |
| 12 | |
Ray Milkey | e022ef6 | 2016-06-08 15:17:19 -0700 | [diff] [blame] | 13 | TEST_DEPS = [ |
| 14 | '//lib:TEST_ADAPTERS', |
| 15 | '//core/api:onos-api-tests', |
| 16 | ] |
| 17 | |
Alessio Giorgetti | 648b538 | 2018-02-15 18:35:45 +0100 | [diff] [blame] | 18 | BUNDLES = [ |
| 19 | ':onos-drivers-lumentum', |
| 20 | '//drivers/utilities:onos-drivers-utilities', |
| 21 | ] |
| 22 | |
Ray Milkey | 61403ed | 2016-04-28 12:27:51 -0700 | [diff] [blame] | 23 | osgi_jar_with_tests ( |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 24 | deps = COMPILE_DEPS, |
Ray Milkey | e022ef6 | 2016-06-08 15:17:19 -0700 | [diff] [blame] | 25 | test_deps = TEST_DEPS, |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 26 | resources_root = 'src/main/resources', |
| 27 | resources = glob(['src/main/resources/**']), |
| 28 | ) |
Ray Milkey | 61403ed | 2016-04-28 12:27:51 -0700 | [diff] [blame] | 29 | |
| 30 | onos_app ( |
Jonathan Hart | bbac354 | 2016-08-02 09:01:19 -0700 | [diff] [blame] | 31 | app_name = 'org.onosproject.drivers.lumentum', |
Thomas Vachuska | b002968 | 2017-08-23 17:55:53 -0700 | [diff] [blame] | 32 | title = 'Lumentum Drivers', |
Ray Milkey | 61403ed | 2016-04-28 12:27:51 -0700 | [diff] [blame] | 33 | category = 'Drivers', |
| 34 | url = 'http://onosproject.org', |
Alessio Giorgetti | 648b538 | 2018-02-15 18:35:45 +0100 | [diff] [blame] | 35 | |
| 36 | description = 'ONOS Lumentum Device Drivers application.', |
| 37 | included_bundles = BUNDLES, |
| 38 | required_apps = [ 'org.onosproject.snmp', 'org.onosproject.faultmanagement', 'org.onosproject.optical-model', |
| 39 | 'org.onosproject.tl1', 'org.onosproject.netconf', 'org.onosproject.drivers.optical'], |
| 40 | |
Ray Milkey | 61403ed | 2016-04-28 12:27:51 -0700 | [diff] [blame] | 41 | ) |