Thomas Vachuska | a8e1bd4 | 2018-06-11 15:45:11 -0700 | [diff] [blame] | 1 | load("//tools/build/bazel:osgi_features.bzl", "osgi_feature", "osgi_feature_repo") |
Ray Milkey | 5a520c7 | 2018-11-01 10:35:06 -0700 | [diff] [blame] | 2 | load("//tools/build/bazel:modules.bzl", "FEATURES") |
Ray Milkey | a8cf59e | 2018-06-06 16:39:45 -0700 | [diff] [blame] | 3 | |
Thomas Vachuska | 03c608c | 2018-07-10 16:45:08 -0700 | [diff] [blame] | 4 | osgi_feature_repo( |
| 5 | name = "onos-features", |
| 6 | exported_features = FEATURES, |
| 7 | visibility = ["//visibility:public"], |
| 8 | ) |
| 9 | |
Ray Milkey | a8cf59e | 2018-06-06 16:39:45 -0700 | [diff] [blame] | 10 | osgi_feature( |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 11 | name = "onos-thirdparty-base", |
| 12 | description = "ONOS 3rd party dependencies", |
Ray Milkey | 644fdbf | 2018-07-27 15:24:31 -0700 | [diff] [blame] | 13 | included_bundles = ATOMIX + [ |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 14 | "@commons_lang//jar", |
| 15 | "@commons_lang3//jar", |
| 16 | "@commons_text//jar", |
Ray Milkey | 0faa721 | 2018-11-07 09:13:41 -0800 | [diff] [blame] | 17 | "@commons_codec//jar", |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 18 | "@commons_configuration//jar", |
Carmelo Cascone | 72893b7 | 2018-08-09 00:59:06 -0700 | [diff] [blame] | 19 | "@com_google_guava_guava//jar", |
Ray Milkey | fb503a7 | 2018-12-19 14:03:17 -0800 | [diff] [blame] | 20 | "@io_netty_netty//jar", |
| 21 | "@io_netty_netty_common//jar", |
| 22 | "@io_netty_netty_buffer//jar", |
| 23 | "@io_netty_netty_transport//jar", |
| 24 | "@io_netty_netty_handler//jar", |
| 25 | "@io_netty_netty_codec//jar", |
Carmelo Cascone | 0f8b7be | 2019-01-29 16:10:57 -0800 | [diff] [blame] | 26 | "@io_netty_netty_codec_http//jar", |
| 27 | "@io_netty_netty_codec_http2//jar", |
| 28 | "@io_netty_netty_codec_socks//jar", |
| 29 | "@io_netty_netty_handler_proxy//jar", |
Ray Milkey | fb503a7 | 2018-12-19 14:03:17 -0800 | [diff] [blame] | 30 | "@io_netty_netty_transport_native_epoll//jar", |
| 31 | "@io_netty_netty_transport_native_unix_common//jar", |
| 32 | "@io_netty_netty_resolver//jar", |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 33 | "@commons_pool//jar", |
| 34 | "@commons_math3//jar", |
| 35 | "@joda_time//jar", |
| 36 | "@metrics_core//jar", |
| 37 | "@metrics_json//jar", |
| 38 | "@minimal_json//jar", |
| 39 | "@kryo//jar", |
| 40 | "@reflectasm//jar", |
| 41 | "@asm//jar", |
| 42 | "@minlog//jar", |
| 43 | "@objenesis//jar", |
| 44 | "@jackson_core//jar", |
| 45 | "@jackson_annotations//jar", |
| 46 | "@jackson_databind//jar", |
| 47 | "@commons_collections//jar", |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 48 | "@concurrent_trees//jar", |
| 49 | "@commons_io//jar", |
Ramon Casellas | 4663da3 | 2018-11-12 15:44:20 +0100 | [diff] [blame] | 50 | "@commons_jxpath//jar", |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 51 | "@mapdb//jar", |
| 52 | "@bcpkix_jdk15on//jar", |
| 53 | "@bcprov_jdk15on//jar", |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 54 | "@commons_beanutils//jar", |
| 55 | "@jdom//jar", |
| 56 | "@sigar//jar", |
Ray Milkey | d84f89b | 2018-08-17 14:54:17 -0700 | [diff] [blame] | 57 | "@org_osgi_util_function//jar", |
| 58 | "@org_osgi_util_promise//jar", |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 59 | ], |
Ray Milkey | fb503a7 | 2018-12-19 14:03:17 -0800 | [diff] [blame] | 60 | required_features = [], |
Thomas Vachuska | 1ae26c6 | 2018-07-09 13:40:16 -0700 | [diff] [blame] | 61 | visibility = ["//visibility:public"], |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 62 | ) |
| 63 | |
Ray Milkey | a8cf59e | 2018-06-06 16:39:45 -0700 | [diff] [blame] | 64 | osgi_feature( |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 65 | name = "onos-thirdparty-web", |
| 66 | description = "ONOS 3rd party dependencies for web apps", |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 67 | included_bundles = [ |
| 68 | "@jersey_common//jar", |
Carmelo Cascone | 72893b7 | 2018-08-09 00:59:06 -0700 | [diff] [blame] | 69 | "@javax_annotation_api_mvn//jar", |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 70 | "@javax_ws_rs_api//jar", |
| 71 | "@hk2_api//jar", |
| 72 | "@hk2_locator//jar", |
| 73 | "@hk2_osgi_resource_locator//jar", |
| 74 | "@javax_inject//jar", |
| 75 | "@jersey_server//jar", |
| 76 | "@jersey_hk2//jar", |
| 77 | "@aopalliance_repackaged//jar", |
| 78 | "@hk2_utils//jar", |
| 79 | "@validation_api//jar", |
| 80 | "@javassist//jar", |
| 81 | "@jersey_container_servlet//jar", |
| 82 | "@jersey_container_servlet_core//jar", |
| 83 | "@jersey_media_multipart//jar", |
Thomas Vachuska | 1ae26c6 | 2018-07-09 13:40:16 -0700 | [diff] [blame] | 84 | "@jersey_client//jar", |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 85 | "@mimepull//jar", |
| 86 | ], |
Ray Milkey | a8cf59e | 2018-06-06 16:39:45 -0700 | [diff] [blame] | 87 | required_features = [ |
| 88 | "war", |
| 89 | "onos-thirdparty-base", |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 90 | ], |
Thomas Vachuska | 1ae26c6 | 2018-07-09 13:40:16 -0700 | [diff] [blame] | 91 | visibility = ["//visibility:public"], |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 92 | ) |
| 93 | |
Ray Milkey | a8cf59e | 2018-06-06 16:39:45 -0700 | [diff] [blame] | 94 | osgi_feature( |
| 95 | name = "onos-api", |
| 96 | description = "ONOS services and model API", |
| 97 | included_bundles = [ |
| 98 | "//utils/misc:onlab-misc", |
| 99 | "//utils/osgi:onlab-osgi", |
Thomas Vachuska | 1ae26c6 | 2018-07-09 13:40:16 -0700 | [diff] [blame] | 100 | "//utils/rest:onlab-rest", |
Ray Milkey | a8cf59e | 2018-06-06 16:39:45 -0700 | [diff] [blame] | 101 | "//core/api:onos-api", |
Ray Milkey | a8cf59e | 2018-06-06 16:39:45 -0700 | [diff] [blame] | 102 | ], |
| 103 | required_features = [ |
| 104 | "scr", |
| 105 | "onos-thirdparty-base", |
Thomas Vachuska | 1ae26c6 | 2018-07-09 13:40:16 -0700 | [diff] [blame] | 106 | "onos-thirdparty-web", |
Ray Milkey | a8cf59e | 2018-06-06 16:39:45 -0700 | [diff] [blame] | 107 | ], |
Thomas Vachuska | 1ae26c6 | 2018-07-09 13:40:16 -0700 | [diff] [blame] | 108 | visibility = ["//visibility:public"], |
Ray Milkey | a8cf59e | 2018-06-06 16:39:45 -0700 | [diff] [blame] | 109 | ) |
| 110 | |
| 111 | osgi_feature( |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 112 | name = "onos-core", |
| 113 | description = "ONOS core components", |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 114 | included_bundles = [ |
| 115 | "//core/net:onos-core-net", |
| 116 | "//core/common:onos-core-common", |
| 117 | "//core/store/dist:onos-core-dist", |
Thomas Vachuska | 1ae26c6 | 2018-07-09 13:40:16 -0700 | [diff] [blame] | 118 | "//core/store/primitives:onos-core-primitives", |
| 119 | "//core/store/persistence:onos-core-persistence", |
| 120 | "//core/store/serializers:onos-core-serializers", |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 121 | ], |
Ray Milkey | a8cf59e | 2018-06-06 16:39:45 -0700 | [diff] [blame] | 122 | required_features = ["onos-api"], |
Thomas Vachuska | 1ae26c6 | 2018-07-09 13:40:16 -0700 | [diff] [blame] | 123 | visibility = ["//visibility:public"], |
Thomas Vachuska | a8e1bd4 | 2018-06-11 15:45:11 -0700 | [diff] [blame] | 124 | ) |
| 125 | |
Ray Milkey | a4f8d9d | 2018-07-11 10:36:23 -0700 | [diff] [blame] | 126 | osgi_feature( |
Thomas Vachuska | 03c608c | 2018-07-10 16:45:08 -0700 | [diff] [blame] | 127 | name = "onos-rest", |
| 128 | description = "ONOS REST API components", |
Thomas Vachuska | 03c608c | 2018-07-10 16:45:08 -0700 | [diff] [blame] | 129 | included_bundles = [ |
Ray Milkey | a4f8d9d | 2018-07-11 10:36:23 -0700 | [diff] [blame] | 130 | "//web/api:onos-rest", |
| 131 | ], |
| 132 | required_features = [ |
| 133 | "onos-api", |
Thomas Vachuska | 03c608c | 2018-07-10 16:45:08 -0700 | [diff] [blame] | 134 | ], |
| 135 | visibility = ["//visibility:public"], |
| 136 | ) |
| 137 | |
Ray Milkey | a4f8d9d | 2018-07-11 10:36:23 -0700 | [diff] [blame] | 138 | osgi_feature( |
Thomas Vachuska | 03c608c | 2018-07-10 16:45:08 -0700 | [diff] [blame] | 139 | name = "onos-cli", |
Ray Milkey | a4f8d9d | 2018-07-11 10:36:23 -0700 | [diff] [blame] | 140 | description = "ONOS admin command console components", |
Thomas Vachuska | 03c608c | 2018-07-10 16:45:08 -0700 | [diff] [blame] | 141 | included_bundles = [ |
Ray Milkey | a4f8d9d | 2018-07-11 10:36:23 -0700 | [diff] [blame] | 142 | "//cli:onos-cli", |
Thomas Vachuska | 03c608c | 2018-07-10 16:45:08 -0700 | [diff] [blame] | 143 | ], |
Ray Milkey | a4f8d9d | 2018-07-11 10:36:23 -0700 | [diff] [blame] | 144 | required_features = ["onos-api"], |
Thomas Vachuska | 03c608c | 2018-07-10 16:45:08 -0700 | [diff] [blame] | 145 | visibility = ["//visibility:public"], |
| 146 | ) |
| 147 | |
Ray Milkey | 6d94e9f | 2018-07-15 18:04:26 -0700 | [diff] [blame] | 148 | osgi_feature( |
Ray Milkey | 6b3775a | 2018-06-28 11:18:44 -0700 | [diff] [blame] | 149 | name = "onos-gui", |
| 150 | description = "ONOS GUI console components", |
Ray Milkey | 6b3775a | 2018-06-28 11:18:44 -0700 | [diff] [blame] | 151 | included_bundles = [ |
Ray Milkey | 6d94e9f | 2018-07-15 18:04:26 -0700 | [diff] [blame] | 152 | "//web/gui:onos-gui", |
Ray Milkey | 6d94e9f | 2018-07-15 18:04:26 -0700 | [diff] [blame] | 153 | ], |
| 154 | required_features = [ |
| 155 | "onos-api", |
Ray Milkey | 6b3775a | 2018-06-28 11:18:44 -0700 | [diff] [blame] | 156 | ], |
| 157 | visibility = ["//visibility:public"], |
| 158 | ) |
Thomas Vachuska | 03c608c | 2018-07-10 16:45:08 -0700 | [diff] [blame] | 159 | |
Sean Condon | f6af2a5 | 2018-08-19 10:43:24 +0100 | [diff] [blame] | 160 | osgi_feature( |
| 161 | name = "onos-gui2", |
| 162 | description = "ONOS GUI2 components", |
| 163 | included_bundles = [ |
| 164 | "//web/gui2:onos-gui2", |
Sean Condon | f6af2a5 | 2018-08-19 10:43:24 +0100 | [diff] [blame] | 165 | ], |
| 166 | required_features = [ |
| 167 | "onos-api", |
Sean Condon | f6af2a5 | 2018-08-19 10:43:24 +0100 | [diff] [blame] | 168 | ], |
| 169 | visibility = ["//visibility:public"], |
| 170 | ) |
Thomas Vachuska | 03c608c | 2018-07-10 16:45:08 -0700 | [diff] [blame] | 171 | |
Thomas Vachuska | d0d7ea1 | 2018-10-10 10:27:04 -0700 | [diff] [blame] | 172 | #osgi_feature( |
| 173 | # name = "onos-security", |
| 174 | # description = "Security-Mode ONOS", |
| 175 | # included_bundles = [ |
| 176 | # "@org_apache_felix_framework_security//jar", |
| 177 | # "//core/security:onos-security", |
| 178 | # ], |
| 179 | # required_features = ["onos-api"], |
| 180 | # visibility = ["//visibility:public"], |
| 181 | #) |