HelloONOS | 137e1fb | 2019-08-20 16:43:52 +0900 | [diff] [blame] | 1 | COMPILE_DEPS = CORE_DEPS + JACKSON + [ |
| 2 | "@javax_ws_rs_api//jar", |
| 3 | "//utils/rest:onlab-rest", |
| 4 | "//drivers/utilities:onos-drivers-utilities", |
| 5 | "//protocols/rest/api:onos-protocols-rest-api", |
| 6 | ] |
| 7 | |
| 8 | TEST_DEPS = TEST_ADAPTERS + [ |
| 9 | "//core/api:onos-api-tests", |
| 10 | ] |
| 11 | |
| 12 | BUNDLES = [ |
| 13 | ":onos-drivers-dellrest", |
| 14 | "//drivers/utilities:onos-drivers-utilities", |
| 15 | ] |
| 16 | |
| 17 | osgi_jar_with_tests( |
| 18 | resources = glob(["src/main/resources/**"]), |
| 19 | resources_root = "src/main/resources", |
| 20 | test_deps = TEST_DEPS, |
| 21 | deps = COMPILE_DEPS, |
| 22 | ) |
| 23 | |
| 24 | onos_app( |
| 25 | app_name = "org.onosproject.drivers.dellrest", |
| 26 | category = "Drivers", |
| 27 | description = "Adds support for Dell Networks devices using REST.", |
| 28 | included_bundles = BUNDLES, |
| 29 | required_apps = ["org.onosproject.restsb"], |
| 30 | title = "Dell Networks REST Drivers", |
| 31 | url = "http://onosproject.org", |
| 32 | ) |