Ray Milkey | 5c9e283 | 2018-06-26 18:37:12 -0700 | [diff] [blame] | 1 | COMPILE_DEPS = CORE_DEPS + NETTY + JACKSON + [ |
| 2 | "@openflowj//jar", |
| 3 | "//protocols/openflow/api:onos-protocols-openflow-api", |
| 4 | "//drivers/default:onos-drivers-default", |
| 5 | "//apps/optical-model:onos-apps-optical-model", |
| 6 | ] |
| 7 | |
| 8 | TEST_DEPS = TEST_ADAPTERS + [ |
| 9 | "//core/api:onos-api-tests", |
| 10 | "//utils/osgi:onlab-osgi-tests", |
| 11 | ] |
| 12 | |
| 13 | osgi_jar_with_tests( |
| 14 | resources = glob(["src/main/resources/**"]), |
| 15 | resources_root = "src/main/resources", |
| 16 | test_deps = TEST_DEPS, |
| 17 | deps = COMPILE_DEPS, |
| 18 | ) |
| 19 | |
| 20 | onos_app( |
| 21 | app_name = "org.onosproject.drivers.optical", |
| 22 | category = "Drivers", |
| 23 | description = "Suite of basic optical device drivers.", |
| 24 | required_apps = [ |
| 25 | "org.onosproject.drivers", |
| 26 | "org.onosproject.optical-model", |
| 27 | ], |
| 28 | title = "Basic Optical Drivers", |
| 29 | url = "http://onosproject.org", |
| 30 | ) |