slowr | 13fa5b0 | 2017-08-08 16:32:31 -0700 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
| 3 | '//lib:COMPILE', |
| 4 | '//lib:netty-handler', |
| 5 | '//lib:javax.ws.rs-api', |
| 6 | '//lib:org.apache.karaf.shell.console', |
| 7 | '//lib:netty-buffer', |
| 8 | '//utils/rest:onlab-rest', |
| 9 | '//core/store/serializers:onos-core-serializers', |
| 10 | '//cli:onos-cli', |
| 11 | '//lib:netty-transport', |
| 12 | '//core/common:onos-core-common', |
| 13 | ':netty-transport-sctp', |
slowr | 13fa5b0 | 2017-08-08 16:32:31 -0700 | [diff] [blame] | 14 | ] |
| 15 | |
| 16 | BUNDLES = [ |
| 17 | '//apps/xran:onos-apps-xran', |
| 18 | ] |
| 19 | |
| 20 | EXCLUDED_BUNDLES = [ |
| 21 | ':netty-transport-sctp', |
slowr | 13fa5b0 | 2017-08-08 16:32:31 -0700 | [diff] [blame] | 22 | ] |
| 23 | |
| 24 | osgi_jar ( |
| 25 | deps = COMPILE_DEPS, |
| 26 | web_context = '/onos/xran', |
| 27 | api_title = 'XRAN REST API', |
| 28 | api_package = 'org.onosproject.xran.rest', |
| 29 | api_version = '1.0', |
| 30 | api_description = 'XRAN REST API', |
| 31 | ) |
| 32 | |
| 33 | onos_app ( |
| 34 | app_name = 'org.onosproject.xran', |
| 35 | title = 'XRAN REST API', |
| 36 | category = 'Utilities', |
| 37 | url = 'http://onosproject.org', |
| 38 | description = 'XRAN REST API.', |
| 39 | included_bundles = BUNDLES, |
| 40 | excluded_bundles = EXCLUDED_BUNDLES, |
| 41 | ) |
| 42 | |
| 43 | remote_jar ( |
| 44 | name = 'netty-transport-sctp', |
| 45 | out = 'netty-transport-sctp-4.1.13.Final.jar', |
| 46 | url = 'mvn:io.netty:netty-transport-sctp:jar:4.1.13.Final', |
| 47 | sha1 = '41e4ab1dc14cae445f93cef6421ce08f82804c1d', |
| 48 | maven_coords = 'io.netty:netty-transport-sctp:4.1.13.Final', |
| 49 | visibility = [ 'PUBLIC' ], |
| 50 | ) |