Ray Milkey | 5c9e283 | 2018-06-26 18:37:12 -0700 | [diff] [blame] | 1 | COMPILE_DEPS = CORE_DEPS + JACKSON + KRYO + [ |
| 2 | "//protocols/lisp/api:onos-protocols-lisp-api", |
| 3 | "//protocols/lisp/msg:onos-protocols-lisp-msg", |
| 4 | "//apps/mappingmanagement/api:onos-apps-mappingmanagement-api", |
| 5 | "//core/store/serializers:onos-core-serializers", |
| 6 | ] |
| 7 | |
| 8 | TEST_DEPS = TEST_ADAPTERS + [ |
| 9 | "@jersey_test_framework_core//jar", |
| 10 | "@jersey_test_framework_jetty//jar", |
| 11 | "//apps/mappingmanagement/api:onos-apps-mappingmanagement-api-tests", |
| 12 | "//core/api:onos-api-tests", |
| 13 | "//utils/osgi:onlab-osgi-tests", |
| 14 | "//web/api:onos-rest-tests", |
| 15 | ] |
| 16 | |
| 17 | BUNDLES = [ |
| 18 | ":onos-drivers-lisp", |
| 19 | ] |
| 20 | |
| 21 | osgi_jar_with_tests( |
| 22 | resources = glob(["src/main/resources/**"]), |
| 23 | resources_root = "src/main/resources", |
| 24 | test_deps = TEST_DEPS, |
| 25 | deps = COMPILE_DEPS, |
| 26 | ) |
| 27 | |
| 28 | onos_app( |
| 29 | app_name = "org.onosproject.drivers.lisp", |
| 30 | category = "Drivers", |
| 31 | description = "Adds support for devices using LISP.", |
| 32 | included_bundles = BUNDLES, |
| 33 | required_apps = ["org.onosproject.lisp"], |
| 34 | title = "Generic LISP Drivers", |
| 35 | url = "https://wiki.onosproject.org/display/ONOS/LISP+as+SBI", |
| 36 | ) |