Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
Ray Milkey | 446f446 | 2017-08-17 15:36:01 -0700 | [diff] [blame] | 3 | '//lib:JACKSON', |
| 4 | '//lib:KRYO', |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 5 | '//lib:openflowj', |
Ray Milkey | 8dac818 | 2016-04-28 16:44:19 -0700 | [diff] [blame] | 6 | '//protocols/openflow/api:onos-protocols-openflow-api', |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 7 | '//core/store/serializers:onos-core-serializers', |
| 8 | ] |
| 9 | |
Ray Milkey | e022ef6 | 2016-06-08 15:17:19 -0700 | [diff] [blame] | 10 | TEST_DEPS = [ |
| 11 | '//lib:TEST_ADAPTERS', |
| 12 | '//core/api:onos-api-tests', |
| 13 | ] |
| 14 | |
Ray Milkey | 61403ed | 2016-04-28 12:27:51 -0700 | [diff] [blame] | 15 | osgi_jar_with_tests ( |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 16 | deps = COMPILE_DEPS, |
Ray Milkey | e022ef6 | 2016-06-08 15:17:19 -0700 | [diff] [blame] | 17 | test_deps = TEST_DEPS, |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 18 | resources_root = 'src/main/resources', |
| 19 | resources = glob(['src/main/resources/**']), |
| 20 | ) |
| 21 | |
Ray Milkey | 61403ed | 2016-04-28 12:27:51 -0700 | [diff] [blame] | 22 | onos_app ( |
Ray Milkey | 8dac818 | 2016-04-28 16:44:19 -0700 | [diff] [blame] | 23 | app_name = 'org.onosproject.drivers', |
Thomas Vachuska | b002968 | 2017-08-23 17:55:53 -0700 | [diff] [blame] | 24 | title = 'Default Drivers', |
Ray Milkey | 61403ed | 2016-04-28 12:27:51 -0700 | [diff] [blame] | 25 | category = 'Drivers', |
| 26 | url = 'http://onosproject.org', |
Thomas Vachuska | b002968 | 2017-08-23 17:55:53 -0700 | [diff] [blame] | 27 | description = 'Suite of default drivers.', |
Brian O'Connor | be27bb3 | 2016-04-29 16:55:44 -0700 | [diff] [blame] | 28 | included_bundles = [ |
| 29 | ':onos-drivers-default', |
| 30 | '//lib:openflowj', |
| 31 | '//protocols/openflow/api:onos-protocols-openflow-api', |
| 32 | ] |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 33 | ) |