Andrea Campanella | 2bdf204 | 2019-01-28 13:47:11 +0100 | [diff] [blame] | 1 | COMPILE_DEPS = CORE_DEPS + JACKSON + [ |
Ray Milkey | 86ad7bb | 2018-09-27 12:32:28 -0700 | [diff] [blame] | 2 | "@commons_jxpath//jar", |
Andrea Campanella | 2bdf204 | 2019-01-28 13:47:11 +0100 | [diff] [blame] | 3 | "@javax_ws_rs_api//jar", |
| 4 | "@httpcore_osgi//jar", |
Andrea Campanella | bb66e09 | 2019-01-28 13:50:06 +0100 | [diff] [blame] | 5 | "//core/store/serializers:onos-core-serializers", |
Ray Milkey | 257eb6d | 2018-07-17 09:41:00 -0700 | [diff] [blame] | 6 | "//drivers/utilities:onos-drivers-utilities", |
| 7 | "//protocols/netconf/api:onos-protocols-netconf-api", |
Diego Garcia | 09ab5e2 | 2018-12-18 11:47:01 +0100 | [diff] [blame] | 8 | "//protocols/rest/api:onos-protocols-rest-api", |
Ray Milkey | 257eb6d | 2018-07-17 09:41:00 -0700 | [diff] [blame] | 9 | "//apps/odtn/api:onos-apps-odtn-api", |
Ramon Casellas | 03f194f | 2018-11-15 16:06:02 +0100 | [diff] [blame] | 10 | "//apps/optical-model:onos-apps-optical-model", |
| 11 | "//drivers/optical:onos-drivers-optical", |
Eroshkin Ivan | 85f21c8 | 2019-12-12 15:20:34 +0100 | [diff] [blame] | 12 | "//apps/faultmanagement/fmcli:onos-apps-faultmanagement-fmcli", # Enabling Alarm stuff |
| 13 | "//apps/faultmanagement/fmmgr:onos-apps-faultmanagement-fmmgr-native", |
Yi Tseng | 9619d80 | 2020-03-19 23:28:31 +0800 | [diff] [blame] | 14 | "//drivers/gnmi:onos-drivers-gnmi", |
| 15 | "//protocols/gnmi/stub:onos-protocols-gnmi-stub", |
| 16 | "//protocols/gnmi/api:onos-protocols-gnmi-api", |
| 17 | "//protocols/grpc/utils:onos-protocols-grpc-utils", |
Ray Milkey | 257eb6d | 2018-07-17 09:41:00 -0700 | [diff] [blame] | 18 | ] |
| 19 | |
| 20 | TEST_DEPS = TEST_ADAPTERS + [ |
| 21 | "@slf4j_jdk14//jar", |
| 22 | "//core/api:onos-api-tests", |
| 23 | ] |
| 24 | |
| 25 | BUNDLES = [ |
| 26 | ":onos-drivers-odtn-driver", |
quan PHAM VAN | 32d70e5 | 2018-08-01 17:35:30 -0700 | [diff] [blame] | 27 | "//drivers/utilities:onos-drivers-utilities", |
Ray Milkey | 257eb6d | 2018-07-17 09:41:00 -0700 | [diff] [blame] | 28 | ] |
| 29 | |
| 30 | osgi_jar_with_tests( |
| 31 | resources = glob(["src/main/resources/**"]), |
| 32 | resources_root = "src/main/resources", |
| 33 | test_deps = TEST_DEPS, |
| 34 | deps = COMPILE_DEPS, |
| 35 | ) |
| 36 | |
| 37 | onos_app( |
| 38 | app_name = "org.onosproject.drivers.odtn-driver", |
| 39 | category = "Drivers", |
| 40 | description = "Drivers related to ODTN", |
| 41 | included_bundles = BUNDLES, |
| 42 | required_apps = [ |
Diego Garcia | 09ab5e2 | 2018-12-18 11:47:01 +0100 | [diff] [blame] | 43 | "org.onosproject.restsb", |
Ray Milkey | 257eb6d | 2018-07-17 09:41:00 -0700 | [diff] [blame] | 44 | "org.onosproject.netconf", |
quan PHAM VAN | 32d70e5 | 2018-08-01 17:35:30 -0700 | [diff] [blame] | 45 | "org.onosproject.config", |
Ray Milkey | 257eb6d | 2018-07-17 09:41:00 -0700 | [diff] [blame] | 46 | "org.onosproject.odtn-api", |
Ramon Casellas | 03f194f | 2018-11-15 16:06:02 +0100 | [diff] [blame] | 47 | "org.onosproject.drivers.netconf", |
| 48 | "org.onosproject.drivers.optical", |
| 49 | "org.onosproject.optical-model", |
Yi Tseng | 9619d80 | 2020-03-19 23:28:31 +0800 | [diff] [blame] | 50 | "org.onosproject.drivers.gnmi", |
Ray Milkey | 257eb6d | 2018-07-17 09:41:00 -0700 | [diff] [blame] | 51 | ], |
| 52 | title = "ODTN Driver", |
| 53 | url = "https://wiki.onosproject.org/display/ODTN/ODTN", |
| 54 | ) |