Yuta HIGUCHI | 8c6e194 | 2018-04-05 13:40:51 -0700 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
Ramon Casellas | fbcd294 | 2018-05-25 14:41:40 +0200 | [diff] [blame] | 3 | '//drivers/utilities:onos-drivers-utilities', |
Yuta HIGUCHI | 8c6e194 | 2018-04-05 13:40:51 -0700 | [diff] [blame] | 4 | '//protocols/netconf/api:onos-protocols-netconf-api', |
| 5 | '//lib:commons-jxpath', |
Yuta HIGUCHI | e9df0c4 | 2018-05-07 16:24:42 -0700 | [diff] [blame] | 6 | '//apps/odtn/api:onos-apps-odtn-api', |
Yuta HIGUCHI | 8c6e194 | 2018-04-05 13:40:51 -0700 | [diff] [blame] | 7 | ] |
| 8 | |
| 9 | TEST_DEPS = [ |
| 10 | '//lib:TEST_ADAPTERS', |
| 11 | '//core/api:onos-api-tests', |
| 12 | '//lib:slf4j-jdk14', |
| 13 | ] |
| 14 | |
| 15 | BUNDLES = [ |
| 16 | ':onos-drivers-odtn-driver', |
hiroki | 0bd58bb | 2018-05-14 22:18:23 -0700 | [diff] [blame] | 17 | # '//lib:commons-jxpath', |
| 18 | # '//lib:commons-beanutils', # jxpath dependency |
| 19 | # '//lib:jdom', # jxpath dependency |
Yuta HIGUCHI | 8c6e194 | 2018-04-05 13:40:51 -0700 | [diff] [blame] | 20 | ] |
| 21 | |
| 22 | osgi_jar_with_tests ( |
| 23 | deps = COMPILE_DEPS, |
| 24 | test_deps = TEST_DEPS, |
| 25 | resources_root = 'src/main/resources', |
| 26 | resources = glob(['src/main/resources/**']), |
| 27 | ) |
| 28 | |
| 29 | onos_app ( |
| 30 | app_name = 'org.onosproject.drivers.odtn-driver', |
| 31 | title = 'ODTN Driver', |
| 32 | category = 'Drivers', |
| 33 | url = 'https://wiki.onosproject.org/display/ODTN/ODTN', |
| 34 | description = 'Drivers related to ODTN', |
| 35 | included_bundles = BUNDLES, |
| 36 | required_apps = [ |
| 37 | 'org.onosproject.netconf', |
Yuta HIGUCHI | e9df0c4 | 2018-05-07 16:24:42 -0700 | [diff] [blame] | 38 | 'org.onosproject.odtn-api', |
Yuta HIGUCHI | 8c6e194 | 2018-04-05 13:40:51 -0700 | [diff] [blame] | 39 | ], |
| 40 | ) |