Updating BUCK files for 3rd party dependencies.
Change-Id: I24a8f0ada29548058c058df0ceacc29f8ad576b6 Note: lib/BUCK is not autogenerated
Showing
4 changed files
with
1581 additions
and
666 deletions
... | @@ -17,7 +17,6 @@ TEST_DEPS = [ | ... | @@ -17,7 +17,6 @@ TEST_DEPS = [ |
17 | '//lib:jersey-test-framework-grizzly2', | 17 | '//lib:jersey-test-framework-grizzly2', |
18 | '//utils/osgi:onlab-osgi-tests', | 18 | '//utils/osgi:onlab-osgi-tests', |
19 | '//web/api:onos-rest-tests', | 19 | '//web/api:onos-rest-tests', |
20 | - '//utils/osgi:onlab-osgi', | ||
21 | '//incubator/api:onos-incubator-api-tests', | 20 | '//incubator/api:onos-incubator-api-tests', |
22 | ] | 21 | ] |
23 | 22 | ... | ... |
1 | -SRC = 'src/main/java/org/onosproject/incubator/net/**/' | ||
2 | -TEST = 'src/test/java/org/onosproject/incubator/net/**/' | ||
3 | -CURRENT_NAME = 'onos-incubator-net' | ||
4 | -CURRENT_TARGET = ':' + CURRENT_NAME | ||
5 | - | ||
6 | COMPILE_DEPS = [ | 1 | COMPILE_DEPS = [ |
7 | '//lib:CORE_DEPS', | 2 | '//lib:CORE_DEPS', |
8 | '//incubator/api:onos-incubator-api', | 3 | '//incubator/api:onos-incubator-api', |
... | @@ -14,20 +9,10 @@ TEST_DEPS = [ | ... | @@ -14,20 +9,10 @@ TEST_DEPS = [ |
14 | '//core/common:onos-core-common-tests', | 9 | '//core/common:onos-core-common-tests', |
15 | '//incubator/store:onos-incubator-store', | 10 | '//incubator/store:onos-incubator-store', |
16 | '//core/store/serializers:onos-core-serializers', | 11 | '//core/store/serializers:onos-core-serializers', |
12 | + '//lib:concurrent-trees', | ||
17 | ] | 13 | ] |
18 | 14 | ||
19 | -osgi_jar( | 15 | +osgi_jar_with_tests ( |
20 | - name = CURRENT_NAME, | ||
21 | - srcs = glob([SRC + '/*.java']), | ||
22 | deps = COMPILE_DEPS, | 16 | deps = COMPILE_DEPS, |
23 | - visibility = ['PUBLIC'], | 17 | + test_deps = TEST_DEPS, |
24 | -) | ||
25 | - | ||
26 | -java_test( | ||
27 | - name = 'tests', | ||
28 | - srcs = glob([TEST + '/*.java']), | ||
29 | - deps = COMPILE_DEPS + | ||
30 | - TEST_DEPS + | ||
31 | - [CURRENT_TARGET], | ||
32 | - source_under_test = [CURRENT_TARGET], | ||
33 | ) | 18 | ) | ... | ... |
1 | -def define_license(name): | 1 | +# ***** This file is auto-generated at Fri Apr 15 15:25:59 PDT 2016. Do not edit this file manually. ***** |
2 | - n = 'LICENSE-' + name | ||
3 | - genrule( | ||
4 | - name = n, | ||
5 | - cmd = 'ln -s $SRCS $OUT', | ||
6 | - srcs = [n], | ||
7 | - out = n, | ||
8 | - visibility = ['PUBLIC'], | ||
9 | - ) | ||
10 | - | ||
11 | -define_license(name = 'Apache2.0') | ||
12 | - | ||
13 | -include_defs('//bucklets/maven_jar.bucklet') | ||
14 | - | ||
15 | java_library( | 2 | java_library( |
16 | name = 'COMPILE', | 3 | name = 'COMPILE', |
17 | visibility = ['PUBLIC'], | 4 | visibility = ['PUBLIC'], |
... | @@ -20,6 +7,7 @@ java_library( | ... | @@ -20,6 +7,7 @@ java_library( |
20 | ':commons-configuration', | 7 | ':commons-configuration', |
21 | ':commons-logging', | 8 | ':commons-logging', |
22 | ':commons-collections', | 9 | ':commons-collections', |
10 | + ':commons-lang', | ||
23 | ':commons-lang3', | 11 | ':commons-lang3', |
24 | ':commons-io', | 12 | ':commons-io', |
25 | ':commons-pool', | 13 | ':commons-pool', |
... | @@ -27,7 +15,6 @@ java_library( | ... | @@ -27,7 +15,6 @@ java_library( |
27 | ':guava', | 15 | ':guava', |
28 | ':netty', | 16 | ':netty', |
29 | ':netty-common', | 17 | ':netty-common', |
30 | - ':commons-lang', | ||
31 | ':minimal-json', | 18 | ':minimal-json', |
32 | ':kryo', | 19 | ':kryo', |
33 | ':reflectasm', | 20 | ':reflectasm', |
... | @@ -45,11 +32,6 @@ java_library( | ... | @@ -45,11 +32,6 @@ java_library( |
45 | ':jackson-databind', | 32 | ':jackson-databind', |
46 | ':org.apache.karaf.features.core', | 33 | ':org.apache.karaf.features.core', |
47 | ':org.apache.karaf.system.core', | 34 | ':org.apache.karaf.system.core', |
48 | - ':openstack4j-core', | ||
49 | - ':openstack4j-http-connector', | ||
50 | - ':openstack4j-httpclient', | ||
51 | - | ||
52 | -# Is this still needed? | ||
53 | ':jsr305', | 35 | ':jsr305', |
54 | ], | 36 | ], |
55 | ) | 37 | ) |
... | @@ -90,29 +72,28 @@ java_library( | ... | @@ -90,29 +72,28 @@ java_library( |
90 | ], | 72 | ], |
91 | ) | 73 | ) |
92 | 74 | ||
93 | - | ||
94 | java_library( | 75 | java_library( |
95 | name = 'TEST_REST', | 76 | name = 'TEST_REST', |
96 | visibility = ['PUBLIC'], | 77 | visibility = ['PUBLIC'], |
97 | exported_deps = [ | 78 | exported_deps = [ |
98 | ':TEST_ADAPTERS', | 79 | ':TEST_ADAPTERS', |
99 | - '//lib:jersey-client', | 80 | + ':jersey-client', |
100 | - '//lib:jersey-server', | 81 | + ':jersey-server', |
101 | - '//lib:jersey-common', | 82 | + ':jersey-common', |
102 | - '//lib:jersey-test-framework-core', | 83 | + ':jersey-test-framework-core', |
103 | - '//lib:jersey-test-framework-grizzly2', | 84 | + ':jersey-test-framework-grizzly2', |
104 | - '//lib:jersey-guava', | 85 | + ':jersey-guava', |
105 | - '//lib:hk2-api', | 86 | + ':hk2-api', |
106 | - '//lib:hk2-locator', | 87 | + ':hk2-locator', |
107 | - '//lib:hk2-utils', | 88 | + ':hk2-utils', |
108 | - '//lib:javax.inject', | 89 | + ':javax.inject', |
109 | - '//lib:hk2-osgi-resource-locator', | 90 | + ':hk2-osgi-resource-locator', |
110 | - '//lib:jersey-container-grizzly2-http', | 91 | + ':jersey-container-grizzly2-http', |
111 | - '//lib:grizzly-http-server', | 92 | + ':grizzly-http-server', |
112 | - '//lib:grizzly-framework', | 93 | + ':grizzly-framework', |
113 | - '//lib:grizzly-http', | 94 | + ':grizzly-http', |
114 | - '//lib:javax.annotation-api', | 95 | + ':javax.annotation-api', |
115 | - '//lib:validation-api', | 96 | + ':validation-api', |
116 | '//core/common:onos-core-common', | 97 | '//core/common:onos-core-common', |
117 | '//core/api:onos-api-tests', | 98 | '//core/api:onos-api-tests', |
118 | '//core/common:onos-core-common-tests', | 99 | '//core/common:onos-core-common-tests', |
... | @@ -120,857 +101,1593 @@ java_library( | ... | @@ -120,857 +101,1593 @@ java_library( |
120 | ], | 101 | ], |
121 | ) | 102 | ) |
122 | 103 | ||
123 | -maven_jar( | 104 | +prebuilt_jar( |
124 | - name = 'minimal-json', | 105 | + name = 'gmetric4j', |
125 | - id = 'com.eclipsesource.minimal-json:minimal-json:0.9.4', | 106 | + binary_jar = ':gmetric4j-1.0.10.jar', |
126 | - sha1 = 'd6e7dd22569de97c2697a4af301a623f35028972', | 107 | + maven_coords = 'info.ganglia.gmetric4j:gmetric4j:1.0.10', |
127 | - license = 'Apache2.0', | 108 | + visibility = [ 'PUBLIC' ], |
128 | ) | 109 | ) |
129 | 110 | ||
130 | -maven_jar( | 111 | +remote_file( |
131 | - name = 'kryo', | 112 | + name = 'gmetric4j-1.0.10.jar', |
132 | - id = 'com.esotericsoftware:kryo:3.0.0', | 113 | + out = 'gmetric4j-1.0.10.jar', |
133 | - sha1 = '86f0de889ece7c30115d27d1c56246fd509201a8', | 114 | + url = 'mvn:info.ganglia.gmetric4j:gmetric4j:jar:1.0.10', |
134 | - license = 'Apache2.0', | 115 | + sha1 = '3d62003123b586adb86cb028cc0f8a8c3a701d81', |
135 | ) | 116 | ) |
136 | 117 | ||
137 | -maven_jar( | 118 | +prebuilt_jar( |
138 | - name = 'minlog', | 119 | + name = 'aopalliance-repackaged', |
139 | - id = 'com.esotericsoftware:minlog:1.3.0', | 120 | + binary_jar = ':aopalliance-repackaged-2.4.0-b34.jar', |
140 | - sha1 = 'ff07b5f1b01d2f92bb00a337f9a94873712f0827', | 121 | + maven_coords = 'org.glassfish.hk2.external:aopalliance-repackaged:2.4.0-b34', |
141 | - license = 'Apache2.0', | 122 | + visibility = [ 'PUBLIC' ], |
142 | ) | 123 | ) |
143 | 124 | ||
144 | -maven_jar( | 125 | +remote_file( |
145 | - name = 'reflectasm', | 126 | + name = 'aopalliance-repackaged-2.4.0-b34.jar', |
146 | - id = 'com.esotericsoftware:reflectasm:1.11.0', | 127 | + out = 'aopalliance-repackaged-2.4.0-b34.jar', |
147 | - sha1 = 'f747d8b017a26bac575f8da14e8c1df6aecd3154', | 128 | + url = 'mvn:org.glassfish.hk2.external:aopalliance-repackaged:jar:2.4.0-b34', |
148 | - license = 'Apache2.0', | 129 | + sha1 = '3d5e856dbc91a3a2b0bcb3a3424f8b62421ae4cf', |
149 | ) | 130 | ) |
150 | 131 | ||
151 | -maven_jar( | 132 | +prebuilt_jar( |
152 | - name = 'jackson-annotations', | 133 | + name = 'asm', |
153 | - id = 'com.fasterxml.jackson.core:jackson-annotations:2.7.0', | 134 | + binary_jar = ':asm-4.2.jar', |
154 | - sha1 = '19f42c154ffc689f40a77613bc32caeb17d744e3', | 135 | + maven_coords = 'org.ow2.asm:asm:4.2', |
155 | - license = 'Apache2.0', | 136 | + visibility = [ 'PUBLIC' ], |
156 | ) | 137 | ) |
157 | 138 | ||
158 | -maven_jar( | 139 | +remote_file( |
159 | - name = 'org.apache.felix.scr', | 140 | + name = 'asm-4.2.jar', |
160 | - id = 'org.apache.felix:org.apache.felix.scr:1.8.2', | 141 | + out = 'asm-4.2.jar', |
161 | - sha1 = 'c3047d56ee57de0752821fd9c3894dda664f2e37', | 142 | + url = 'mvn:org.ow2.asm:asm:jar:4.2', |
162 | - license = 'Apache2.0', | 143 | + sha1 = '4b2c12b92dd045aeabf5b2aeeb3220bf010da9d4', |
163 | ) | 144 | ) |
164 | 145 | ||
165 | -maven_jar( | 146 | +prebuilt_jar( |
166 | - name = 'jackson-core', | 147 | + name = 'atomix', |
167 | - id = 'com.fasterxml.jackson.core:jackson-core:2.7.0', | 148 | + binary_jar = ':atomix-1.0.0-rc3.jar', |
168 | - sha1 = '05f2bfd0866bcacbcc7c25ce25f80b5aeed0f72f', | 149 | + maven_coords = 'io.atomix:atomix:1.0.0-rc3', |
169 | - license = 'Apache2.0', | 150 | + visibility = [ 'PUBLIC' ], |
170 | ) | 151 | ) |
171 | 152 | ||
172 | -maven_jar( | 153 | +remote_file( |
173 | - name = 'jackson-databind', | 154 | + name = 'atomix-1.0.0-rc3.jar', |
174 | - id = 'com.fasterxml.jackson.core:jackson-databind:2.7.0', | 155 | + out = 'atomix-1.0.0-rc3.jar', |
175 | - sha1 = '7d3430de9f2b600b074ba3bc007edcfbc4bbf4fb', | 156 | + url = 'mvn:io.atomix:atomix:jar:1.0.0-rc3', |
176 | - license = 'Apache2.0', | 157 | + sha1 = 'a572aa9cd069b2d43481901dc901429d0b43332f', |
177 | ) | 158 | ) |
178 | 159 | ||
179 | -maven_jar( | 160 | +prebuilt_jar( |
180 | - name = 'jsr305', | 161 | + name = 'atomix-collections', |
181 | - id = 'com.google.code.findbugs:jsr305:3.0.1', | 162 | + binary_jar = ':atomix-collections-1.0.0-rc3.jar', |
182 | - sha1 = 'f7be08ec23c21485b9b5a1cf1654c2ec8c58168d', | 163 | + maven_coords = 'io.atomix:atomix-collections:1.0.0-rc3', |
183 | - license = 'Apache2.0', | 164 | + visibility = [ 'PUBLIC' ], |
184 | ) | 165 | ) |
185 | 166 | ||
186 | -maven_jar( | 167 | +remote_file( |
187 | - name = 'error_prone_annotations', | 168 | + name = 'atomix-collections-1.0.0-rc3.jar', |
188 | - id = 'com.google.errorprone:error_prone_annotations:2.0.2', | 169 | + out = 'atomix-collections-1.0.0-rc3.jar', |
189 | - sha1 = '8382c6cdc18c8c8ad7840024fa340509cf16be11', | 170 | + url = 'mvn:io.atomix:atomix-collections:jar:1.0.0-rc3', |
190 | - license = 'Apache2.0', | 171 | + sha1 = '161dbfd046cefabe7e6c972e70823c11f7abe65e', |
191 | ) | 172 | ) |
192 | 173 | ||
193 | -maven_jar( | 174 | +prebuilt_jar( |
194 | - name = 'guava', | 175 | + name = 'atomix-messaging', |
195 | - id = 'com.google.guava:guava:19.0', | 176 | + binary_jar = ':atomix-messaging-1.0.0-rc3.jar', |
196 | - sha1 = '6ce200f6b23222af3d8abb6b6459e6c44f4bb0e9', | 177 | + maven_coords = 'io.atomix:atomix-messaging:1.0.0-rc3', |
197 | - license = 'Apache2.0', | 178 | + visibility = [ 'PUBLIC' ], |
198 | ) | 179 | ) |
199 | 180 | ||
200 | -maven_jar( | 181 | +remote_file( |
201 | - name = 'guava-testlib', | 182 | + name = 'atomix-messaging-1.0.0-rc3.jar', |
202 | - id = 'com.google.guava:guava-testlib:19.0', | 183 | + out = 'atomix-messaging-1.0.0-rc3.jar', |
203 | - sha1 = 'ce5b880b206de3f76d364988a6308c68c726f74a', | 184 | + url = 'mvn:io.atomix:atomix-messaging:jar:1.0.0-rc3', |
204 | - license = 'Apache2.0', | 185 | + sha1 = '58b570d8e3e76a0d0c649b97f3ee0a6e3885958a', |
205 | ) | 186 | ) |
206 | 187 | ||
207 | -maven_jar( | 188 | +prebuilt_jar( |
208 | - name = 'commons-collections', | 189 | + name = 'atomix-resource', |
209 | - id = 'commons-collections:commons-collections:3.2.2', | 190 | + binary_jar = ':atomix-resource-1.0.0-rc3.jar', |
210 | - sha1 = '8ad72fe39fa8c91eaaf12aadb21e0c3661fe26d5', | 191 | + maven_coords = 'io.atomix:atomix-resource:1.0.0-rc3', |
211 | - license = 'Apache2.0', | 192 | + visibility = [ 'PUBLIC' ], |
212 | ) | 193 | ) |
213 | 194 | ||
214 | -maven_jar( | 195 | +remote_file( |
215 | - name = 'commons-configuration', | 196 | + name = 'atomix-resource-1.0.0-rc3.jar', |
216 | - id = 'commons-configuration:commons-configuration:1.10', | 197 | + out = 'atomix-resource-1.0.0-rc3.jar', |
217 | - sha1 = '2b36e4adfb66d966c5aef2d73deb6be716389dc9', | 198 | + url = 'mvn:io.atomix:atomix-resource:jar:1.0.0-rc3', |
218 | - license = 'Apache2.0', | 199 | + sha1 = 'e47a40d38e6241544ec75df0e6906c209190aebf', |
219 | ) | 200 | ) |
220 | 201 | ||
221 | -maven_jar( | 202 | +prebuilt_jar( |
222 | - name = 'commons-lang', | 203 | + name = 'atomix-resource-manager', |
223 | - id = 'commons-lang:commons-lang:2.6', | 204 | + binary_jar = ':atomix-resource-manager-1.0.0-rc3.jar', |
224 | - sha1 = '0ce1edb914c94ebc388f086c6827e8bdeec71ac2', | 205 | + maven_coords = 'io.atomix:atomix-resource-manager:1.0.0-rc3', |
225 | - license = 'Apache2.0', | 206 | + visibility = [ 'PUBLIC' ], |
226 | ) | 207 | ) |
227 | 208 | ||
228 | -maven_jar( | 209 | +remote_file( |
229 | - name = 'commons-logging', | 210 | + name = 'atomix-resource-manager-1.0.0-rc3.jar', |
230 | - id = 'commons-logging:commons-logging:1.1.1', | 211 | + out = 'atomix-resource-manager-1.0.0-rc3.jar', |
231 | - sha1 = '5043bfebc3db072ed80fbd362e7caf00e885d8ae', | 212 | + url = 'mvn:io.atomix:atomix-resource-manager:jar:1.0.0-rc3', |
232 | - license = 'Apache2.0', | 213 | + sha1 = '41a4cf53c27df12efb04832e1314a81c09c857cb', |
233 | ) | 214 | ) |
234 | 215 | ||
235 | -maven_jar( | 216 | +prebuilt_jar( |
236 | - name = 'commons-pool', | 217 | + name = 'atomix-variables', |
237 | - id = 'commons-pool:commons-pool:1.6', | 218 | + binary_jar = ':atomix-variables-1.0.0-rc3.jar', |
238 | - sha1 = '4572d589699f09d866a226a14b7f4323c6d8f040', | 219 | + maven_coords = 'io.atomix:atomix-variables:1.0.0-rc3', |
239 | - license = 'Apache2.0', | 220 | + visibility = [ 'PUBLIC' ], |
240 | ) | 221 | ) |
241 | 222 | ||
242 | -maven_jar( | 223 | +remote_file( |
243 | - name = 'commons-io', | 224 | + name = 'atomix-variables-1.0.0-rc3.jar', |
244 | - id = 'commons-io:commons-io:2.4', | 225 | + out = 'atomix-variables-1.0.0-rc3.jar', |
245 | - sha1 = 'b1b6ea3b7e4aa4f492509a4952029cd8e48019ad', | 226 | + url = 'mvn:io.atomix:atomix-variables:jar:1.0.0-rc3', |
246 | - license = 'Apache2.0', | 227 | + sha1 = 'dd0ca3c0d211b17b291877e21f0ef10f2aa4a9bd', |
247 | ) | 228 | ) |
248 | 229 | ||
249 | -maven_jar( | 230 | +prebuilt_jar( |
250 | - name = 'metrics-core', | 231 | + name = 'catalyst-buffer', |
251 | - id = 'io.dropwizard.metrics:metrics-core:3.1.0', | 232 | + binary_jar = ':catalyst-buffer-1.0.4.jar', |
252 | - sha1 = '40e16d596ca49964a88bbce2261e387895b3499e', | 233 | + maven_coords = 'io.atomix.catalyst:catalyst-buffer:1.0.4', |
253 | - license = 'Apache2.0', | 234 | + visibility = [ 'PUBLIC' ], |
254 | ) | 235 | ) |
255 | 236 | ||
256 | -maven_jar( | 237 | +remote_file( |
257 | - name = 'metrics-json', | 238 | + name = 'catalyst-buffer-1.0.4.jar', |
258 | - id = 'io.dropwizard.metrics:metrics-json:3.1.0', | 239 | + out = 'catalyst-buffer-1.0.4.jar', |
259 | - sha1 = '47b1c72af77ca81771422269b807ef6198392741', | 240 | + url = 'mvn:io.atomix.catalyst:catalyst-buffer:jar:1.0.4', |
260 | - license = 'Apache2.0', | 241 | + sha1 = '00fb023ebd860d44385750790328aa26a529c75f', |
261 | ) | 242 | ) |
262 | 243 | ||
263 | -maven_jar( | 244 | +prebuilt_jar( |
264 | - name = 'netty', | 245 | + name = 'catalyst-common', |
265 | - id = 'io.netty:netty:3.10.5.Final', | 246 | + binary_jar = ':catalyst-common-1.0.4.jar', |
266 | - sha1 = '9ca7d55d246092bddd29b867706e2f6c7db701a0', | 247 | + maven_coords = 'io.atomix.catalyst:catalyst-common:1.0.4', |
267 | - license = 'Apache2.0', | 248 | + visibility = [ 'PUBLIC' ], |
268 | ) | 249 | ) |
269 | 250 | ||
270 | -maven_jar( | 251 | +remote_file( |
271 | - name = 'netty-buffer', | 252 | + name = 'catalyst-common-1.0.4.jar', |
272 | - id = 'io.netty:netty-buffer:4.0.33.Final', | 253 | + out = 'catalyst-common-1.0.4.jar', |
273 | - sha1 = 'dd14c35b020af7aa1c6fed7ec5e67a2aa165619e', | 254 | + url = 'mvn:io.atomix.catalyst:catalyst-common:jar:1.0.4', |
274 | - license = 'Apache2.0', | 255 | + sha1 = '69d50a64ecf9f63de430aead9dc4b743d29f0195', |
275 | ) | 256 | ) |
276 | 257 | ||
277 | -maven_jar( | 258 | +prebuilt_jar( |
278 | - name = 'netty-codec', | 259 | + name = 'catalyst-local', |
279 | - id = 'io.netty:netty-codec:4.0.33.Final', | 260 | + binary_jar = ':catalyst-local-1.0.4.jar', |
280 | - sha1 = '56c31f1e373a9374f56173383fe8b6e089ea0351', | 261 | + maven_coords = 'io.atomix.catalyst:catalyst-local:1.0.4', |
281 | - license = 'Apache2.0', | 262 | + visibility = [ 'PUBLIC' ], |
282 | ) | 263 | ) |
283 | 264 | ||
284 | -maven_jar( | 265 | +remote_file( |
285 | - name = 'netty-common', | 266 | + name = 'catalyst-local-1.0.4.jar', |
286 | - id = 'io.netty:netty-common:4.0.33.Final', | 267 | + out = 'catalyst-local-1.0.4.jar', |
287 | - sha1 = '1a1fde71cb95a6e18754b0fd7ac6749f15a86543', | 268 | + url = 'mvn:io.atomix.catalyst:catalyst-local:jar:1.0.4', |
288 | - license = 'Apache2.0', | 269 | + sha1 = 'cbee759c63ce9127c979f4f399d327551644270f', |
289 | ) | 270 | ) |
290 | 271 | ||
291 | -maven_jar( | 272 | +prebuilt_jar( |
292 | - name = 'netty-handler', | 273 | + name = 'catalyst-serializer', |
293 | - id = 'io.netty:netty-handler:4.0.33.Final', | 274 | + binary_jar = ':catalyst-serializer-1.0.4.jar', |
294 | - sha1 = '88325df280c3ba83011cf442883f9f55dc83d5bb', | 275 | + maven_coords = 'io.atomix.catalyst:catalyst-serializer:1.0.4', |
295 | - license = 'Apache2.0', | 276 | + visibility = [ 'PUBLIC' ], |
296 | ) | 277 | ) |
297 | 278 | ||
298 | -maven_jar( | 279 | +remote_file( |
299 | - name = 'netty-transport', | 280 | + name = 'catalyst-serializer-1.0.4.jar', |
300 | - id = 'io.netty:netty-transport:4.0.33.Final', | 281 | + out = 'catalyst-serializer-1.0.4.jar', |
301 | - sha1 = '287c2378318efc12d6bfe00835cd66317fc53dcd', | 282 | + url = 'mvn:io.atomix.catalyst:catalyst-serializer:jar:1.0.4', |
302 | - license = 'Apache2.0', | 283 | + sha1 = 'e86352776cf4fa17eabf4e1d90fe0587ced4f788', |
303 | ) | 284 | ) |
304 | 285 | ||
305 | -maven_jar( | 286 | +prebuilt_jar( |
306 | - name = 'netty-transport-native-epoll', | 287 | + name = 'catalyst-transport', |
307 | - id = 'io.netty:netty-transport-native-epoll:4.0.33.Final', | 288 | + binary_jar = ':catalyst-transport-1.0.4.jar', |
308 | - sha1 = 'f17c2b172e28e9447e0ecf1a87bc4ce3d45647f0', | 289 | + maven_coords = 'io.atomix.catalyst:catalyst-transport:1.0.4', |
309 | - license = 'Apache2.0', | 290 | + visibility = [ 'PUBLIC' ], |
310 | ) | 291 | ) |
311 | 292 | ||
312 | -maven_jar( | 293 | +remote_file( |
313 | - name = 'joda-time', | 294 | + name = 'catalyst-transport-1.0.4.jar', |
314 | - id = 'joda-time:joda-time:2.9', | 295 | + out = 'catalyst-transport-1.0.4.jar', |
315 | - sha1 = 'e8a58b7f5853b693b8c4795a714fe77c266c3acc', | 296 | + url = 'mvn:io.atomix.catalyst:catalyst-transport:jar:1.0.4', |
316 | - license = 'Apache2.0', | 297 | + sha1 = 'f36600add086a8848290cad9d6d117634b5bf069', |
317 | ) | 298 | ) |
318 | 299 | ||
319 | -maven_jar( | 300 | +prebuilt_jar( |
320 | - name = 'junit', | 301 | + name = 'commons-collections', |
321 | - id = 'junit:junit:4.12', | 302 | + binary_jar = ':commons-collections-3.2.2.jar', |
322 | - sha1 = '2973d150c0dc1fefe998f834810d68f278ea58ec', | 303 | + maven_coords = 'commons-collections:commons-collections:3.2.2', |
323 | - license = 'Apache2.0', | 304 | + visibility = [ 'PUBLIC' ], |
324 | ) | 305 | ) |
325 | 306 | ||
326 | -maven_jar( | 307 | +remote_file( |
327 | - name = 'commons-lang3', | 308 | + name = 'commons-collections-3.2.2.jar', |
328 | - id = 'org.apache.commons:commons-lang3:3.4', | 309 | + out = 'commons-collections-3.2.2.jar', |
329 | - sha1 = '5fe28b9518e58819180a43a850fbc0dd24b7c050', | 310 | + url = 'mvn:commons-collections:commons-collections:jar:3.2.2', |
330 | - license = 'Apache2.0', | 311 | + sha1 = '8ad72fe39fa8c91eaaf12aadb21e0c3661fe26d5', |
331 | ) | 312 | ) |
332 | 313 | ||
333 | -maven_jar( | 314 | +prebuilt_jar( |
334 | - name = 'commons-math3', | 315 | + name = 'commons-configuration', |
335 | - id = 'org.apache.commons:commons-math3:3.2', | 316 | + binary_jar = ':commons-configuration-1.10.jar', |
336 | - sha1 = 'ec2544ab27e110d2d431bdad7d538ed509b21e62', | 317 | + maven_coords = 'commons-configuration:commons-configuration:1.10', |
337 | - license = 'Apache2.0', | 318 | + visibility = [ 'PUBLIC' ], |
338 | ) | 319 | ) |
339 | 320 | ||
340 | -maven_jar( | 321 | +remote_file( |
341 | - name = 'org.apache.felix.scr.annotations', | 322 | + name = 'commons-configuration-1.10.jar', |
342 | - id = 'org.apache.felix:org.apache.felix.scr.annotations:1.9.12', | 323 | + out = 'commons-configuration-1.10.jar', |
343 | - sha1 = '5fdc34da641dda8b9165c2be93211479a186da9c', | 324 | + url = 'mvn:commons-configuration:commons-configuration:jar:1.10', |
344 | - license = 'Apache2.0', | 325 | + sha1 = '2b36e4adfb66d966c5aef2d73deb6be716389dc9', |
345 | ) | 326 | ) |
346 | 327 | ||
347 | -maven_jar( | 328 | +prebuilt_jar( |
348 | - name = 'org.apache.karaf.features.core', | 329 | + name = 'commons-io', |
349 | - id = 'org.apache.karaf.features:org.apache.karaf.features.core:3.0.5', | 330 | + binary_jar = ':commons-io-2.4.jar', |
350 | - sha1 = '595b5ddfc4eccad090cb2a1eb14e2ba3cebcb5de', | 331 | + maven_coords = 'commons-io:commons-io:2.4', |
351 | - license = 'Apache2.0', | 332 | + visibility = [ 'PUBLIC' ], |
352 | ) | 333 | ) |
353 | 334 | ||
354 | -maven_jar( | 335 | +remote_file( |
355 | - name = 'org.apache.karaf.system.core', | 336 | + name = 'commons-io-2.4.jar', |
356 | - id = 'org.apache.karaf.system:org.apache.karaf.system.core:3.0.5', | 337 | + out = 'commons-io-2.4.jar', |
357 | - sha1 = '9740da22ad1c07b2651d837277f0e910a2fc2300', | 338 | + url = 'mvn:commons-io:commons-io:jar:2.4', |
358 | - license = 'Apache2.0', | 339 | + sha1 = 'b1b6ea3b7e4aa4f492509a4952029cd8e48019ad', |
359 | ) | 340 | ) |
360 | 341 | ||
361 | -maven_jar( | 342 | +prebuilt_jar( |
362 | - name = 'easymock', | 343 | + name = 'commons-lang', |
363 | - id = 'org.easymock:easymock:3.4', | 344 | + binary_jar = ':commons-lang-2.6.jar', |
364 | - sha1 = '9fdeea183a399f25c2469497612cad131e920fa3', | 345 | + maven_coords = 'commons-lang:commons-lang:2.6', |
365 | - license = 'Apache2.0', | 346 | + visibility = [ 'PUBLIC' ], |
366 | ) | 347 | ) |
367 | 348 | ||
368 | -maven_jar( | 349 | +remote_file( |
369 | - name = 'hamcrest-core', | 350 | + name = 'commons-lang-2.6.jar', |
370 | - id = 'org.hamcrest:hamcrest-core:1.3', | 351 | + out = 'commons-lang-2.6.jar', |
371 | - sha1 = '42a25dc3219429f0e5d060061f71acb49bf010a0', | 352 | + url = 'mvn:commons-lang:commons-lang:jar:2.6', |
372 | - license = 'Apache2.0', | 353 | + sha1 = '0ce1edb914c94ebc388f086c6827e8bdeec71ac2', |
373 | ) | 354 | ) |
374 | 355 | ||
375 | -maven_jar( | 356 | +prebuilt_jar( |
376 | - name = 'hamcrest-library', | 357 | + name = 'commons-lang3', |
377 | - id = 'org.hamcrest:hamcrest-library:1.3', | 358 | + binary_jar = ':commons-lang3-3.4.jar', |
378 | - sha1 = '4785a3c21320980282f9f33d0d1264a69040538f', | 359 | + maven_coords = 'org.apache.commons:commons-lang3:3.4', |
379 | - license = 'Apache2.0', | 360 | + visibility = [ 'PUBLIC' ], |
380 | ) | 361 | ) |
381 | 362 | ||
382 | -maven_jar( | 363 | +remote_file( |
383 | - name = 'hamcrest-all', | 364 | + name = 'commons-lang3-3.4.jar', |
384 | - id = 'org.hamcrest:hamcrest-all:1.3', | 365 | + out = 'commons-lang3-3.4.jar', |
385 | - sha1 = '63a21ebc981131004ad02e0434e799fd7f3a8d5a', | 366 | + url = 'mvn:org.apache.commons:commons-lang3:jar:3.4', |
386 | - license = 'Apache2.0', | 367 | + sha1 = '5fe28b9518e58819180a43a850fbc0dd24b7c050', |
387 | ) | 368 | ) |
388 | 369 | ||
389 | -maven_jar( | 370 | +prebuilt_jar( |
390 | - name = 'mapdb', | 371 | + name = 'commons-logging', |
391 | - id = 'org.mapdb:mapdb:1.0.8', | 372 | + binary_jar = ':commons-logging-1.1.1.jar', |
392 | - sha1 = '64485a221d9095fc7ab9b50cc34c6b4b58467e2e', | 373 | + maven_coords = 'commons-logging:commons-logging:1.1.1', |
393 | - license = 'Apache2.0', | 374 | + visibility = [ 'PUBLIC' ], |
394 | ) | 375 | ) |
395 | 376 | ||
396 | -maven_jar( | 377 | +remote_file( |
397 | - name = 'objenesis', | 378 | + name = 'commons-logging-1.1.1.jar', |
398 | - id = 'org.objenesis:objenesis:2.2', | 379 | + out = 'commons-logging-1.1.1.jar', |
399 | - sha1 = '3fb533efdaa50a768c394aa4624144cf8df17845', | 380 | + url = 'mvn:commons-logging:commons-logging:jar:1.1.1', |
400 | - license = 'Apache2.0', | 381 | + sha1 = '5043bfebc3db072ed80fbd362e7caf00e885d8ae', |
401 | ) | 382 | ) |
402 | 383 | ||
403 | -maven_jar( | 384 | +prebuilt_jar( |
404 | - name = 'org.osgi.compendium', | 385 | + name = 'commons-math3', |
405 | - id = 'org.osgi:org.osgi.compendium:4.3.1', | 386 | + binary_jar = ':commons-math3-3.2.jar', |
406 | - sha1 = 'd1c9d7819de47d938a96ac2a3813bfd914684cf4', | 387 | + maven_coords = 'org.apache.commons:commons-math3:3.2', |
407 | - license = 'Apache2.0', | 388 | + visibility = [ 'PUBLIC' ], |
408 | ) | 389 | ) |
409 | 390 | ||
410 | -maven_jar( | 391 | +remote_file( |
411 | - name = 'osgi-core', | 392 | + name = 'commons-math3-3.2.jar', |
412 | - id = 'org.osgi:org.osgi.core:4.3.1', | 393 | + out = 'commons-math3-3.2.jar', |
413 | - sha1 = '5458ffe2ba049e76c29f2df2dc3ffccddf8b839e', | 394 | + url = 'mvn:org.apache.commons:commons-math3:jar:3.2', |
414 | - license = 'Apache2.0', | 395 | + sha1 = 'ec2544ab27e110d2d431bdad7d538ed509b21e62', |
415 | ) | 396 | ) |
416 | 397 | ||
417 | -maven_jar( | 398 | +prebuilt_jar( |
418 | - name = 'asm', | 399 | + name = 'commons-pool', |
419 | - id = 'org.ow2.asm:asm:4.2', | 400 | + binary_jar = ':commons-pool-1.6.jar', |
420 | - sha1 = '4b2c12b92dd045aeabf5b2aeeb3220bf010da9d4', | 401 | + maven_coords = 'commons-pool:commons-pool:1.6', |
421 | - license = 'Apache2.0', | 402 | + visibility = [ 'PUBLIC' ], |
422 | ) | 403 | ) |
423 | 404 | ||
424 | -maven_jar( | 405 | +remote_file( |
425 | - name = 'slf4j-api', | 406 | + name = 'commons-pool-1.6.jar', |
426 | - id = 'org.slf4j:slf4j-api:1.7.13', | 407 | + out = 'commons-pool-1.6.jar', |
427 | - sha1 = '7fcf30c25b8f4a9379b9dad0d3f487b25272c026', | 408 | + url = 'mvn:commons-pool:commons-pool:jar:1.6', |
428 | - license = 'Apache2.0', | 409 | + sha1 = '4572d589699f09d866a226a14b7f4323c6d8f040', |
429 | ) | 410 | ) |
430 | 411 | ||
431 | -maven_jar( | 412 | +prebuilt_jar( |
432 | - name = 'slf4j-jdk14', | 413 | + name = 'concurrent-trees', |
433 | - id = 'org.slf4j:slf4j-jdk14:1.7.13', | 414 | + binary_jar = ':concurrent-trees-2.4.0.jar', |
434 | - sha1 = 'bcc4dd3bffd6bce845164140bdf18ce14e76b423', | 415 | + maven_coords = 'com.googlecode.concurrent-trees:concurrent-trees:2.4.0', |
435 | - license = 'Apache2.0', | 416 | + visibility = [ 'PUBLIC' ], |
436 | ) | 417 | ) |
437 | 418 | ||
438 | -maven_jar( | 419 | +remote_file( |
439 | - name = 'javax.ws.rs-api', | 420 | + name = 'concurrent-trees-2.4.0.jar', |
440 | - id = 'javax.ws.rs:javax.ws.rs-api:2.0.1', | 421 | + out = 'concurrent-trees-2.4.0.jar', |
441 | - sha1 = '104e9c2b5583cfcfeac0402316221648d6d8ea6b', | 422 | + url = 'mvn:com.googlecode.concurrent-trees:concurrent-trees:jar:2.4.0', |
442 | - license = 'Apache2.0', | 423 | + sha1 = '2e505b78f9216abebbbdf1c3254bf9f4c565ae43', |
443 | ) | 424 | ) |
444 | 425 | ||
445 | -maven_jar( | 426 | +prebuilt_jar( |
446 | - name = 'jersey-client', | 427 | + name = 'copycat-api', |
447 | - id = 'org.glassfish.jersey.core:jersey-client:2.22.2', | 428 | + binary_jar = ':copycat-api-0.5.1.onos.jar', |
448 | - sha1 = '1712fff037ce5a59e3d67f90fff29222989799ee', | 429 | + maven_coords = 'org.onosproject:copycat-api:0.5.1.onos', |
449 | - license = 'Apache2.0', | 430 | + visibility = [ 'PUBLIC' ], |
450 | ) | 431 | ) |
451 | 432 | ||
452 | -maven_jar( | 433 | +remote_file( |
453 | - name = 'jersey-common', | 434 | + name = 'copycat-api-0.5.1.onos.jar', |
454 | - id = 'org.glassfish.jersey.core:jersey-common:2.22.2', | 435 | + out = 'copycat-api-0.5.1.onos.jar', |
455 | - sha1 = '1209b89878b60ce7d49afadeff7522d2fde0e217', | 436 | + url = 'mvn:org.onosproject:copycat-api:jar:0.5.1.onos', |
456 | - license = 'Apache2.0', | 437 | + sha1 = 'b947348875485814e2a175a0435cdae4138452fc', |
457 | ) | 438 | ) |
458 | 439 | ||
459 | -maven_jar( | 440 | +prebuilt_jar( |
460 | - name = 'jersey-server', | 441 | + name = 'copycat-client', |
461 | - id = 'org.glassfish.jersey.core:jersey-server:2.22.2', | 442 | + binary_jar = ':copycat-client-1.0.0-rc4.jar', |
462 | - sha1 = '5ede3e5f98f8b14d31d1d0fffe9908df2bd41c0f', | 443 | + maven_coords = 'io.atomix.copycat:copycat-client:1.0.0-rc4', |
463 | - license = 'Apache2.0', | 444 | + visibility = [ 'PUBLIC' ], |
464 | ) | 445 | ) |
465 | 446 | ||
466 | -maven_jar( | 447 | +remote_file( |
467 | - name = 'jersey-test-framework-core', | 448 | + name = 'copycat-client-1.0.0-rc4.jar', |
468 | - id = 'org.glassfish.jersey.test-framework:jersey-test-framework-core:2.22.2', | 449 | + out = 'copycat-client-1.0.0-rc4.jar', |
469 | - sha1 = '0abc7ab1ac424392d8761798318f706de40fef4d', | 450 | + url = 'mvn:io.atomix.copycat:copycat-client:jar:1.0.0-rc4', |
470 | - license = 'Apache2.0', | 451 | + sha1 = '9373c8920a57356b78896d791296a74a2eb868b4', |
471 | ) | 452 | ) |
472 | 453 | ||
473 | -maven_jar( | 454 | +prebuilt_jar( |
474 | - name = 'jersey-test-framework-grizzly2', | 455 | + name = 'copycat-core', |
475 | - id = 'org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-grizzly2:2.22.2', | 456 | + binary_jar = ':copycat-core-0.5.1.onos.jar', |
476 | - sha1 = '05aa3952528f09ce94360ab238446163d2544344', | 457 | + maven_coords = 'org.onosproject:copycat-core:0.5.1.onos', |
477 | - license = 'Apache2.0', | 458 | + visibility = [ 'PUBLIC' ], |
478 | ) | 459 | ) |
479 | 460 | ||
480 | -maven_jar( | 461 | +remote_file( |
481 | - name = 'jersey-media-multipart', | 462 | + name = 'copycat-core-0.5.1.onos.jar', |
482 | - id = 'org.glassfish.jersey.media:jersey-media-multipart:2.22.2', | 463 | + out = 'copycat-core-0.5.1.onos.jar', |
483 | - sha1 = '304107e42563307acd337c20734148cca41cda91', | 464 | + url = 'mvn:org.onosproject:copycat-core:jar:0.5.1.onos', |
484 | - license = 'Apache2.0', | 465 | + sha1 = 'b268f3cbdd57f28244b21b2b8fc08116f63d736d', |
485 | ) | 466 | ) |
486 | 467 | ||
487 | -maven_jar( | 468 | +prebuilt_jar( |
488 | - name = 'hk2-api', | 469 | + name = 'copycat-event-log', |
489 | - id = 'org.glassfish.hk2:hk2-api:2.4.0-b34', | 470 | + binary_jar = ':copycat-event-log-0.5.1.onos.jar', |
490 | - sha1 = '1017432e219dbd1d4a1121b2d7e87c5b2f0bcfb9', | 471 | + maven_coords = 'org.onosproject:copycat-event-log:0.5.1.onos', |
491 | - license = 'Apache2.0', | 472 | + visibility = [ 'PUBLIC' ], |
492 | ) | 473 | ) |
493 | 474 | ||
494 | -maven_jar( | 475 | +remote_file( |
495 | - name = 'hk2-locator', | 476 | + name = 'copycat-event-log-0.5.1.onos.jar', |
496 | - id = 'org.glassfish.hk2:hk2-locator:2.4.0-b34', | 477 | + out = 'copycat-event-log-0.5.1.onos.jar', |
497 | - sha1 = '1451fc3e5b7f00d7a5ca0feaff2c1bf68be5ac91', | 478 | + url = 'mvn:org.onosproject:copycat-event-log:jar:0.5.1.onos', |
498 | - license = 'Apache2.0', | 479 | + sha1 = 'a9e32b13e6500c66113202e7d123e7184b726054', |
499 | ) | 480 | ) |
500 | 481 | ||
501 | -maven_jar( | 482 | +prebuilt_jar( |
502 | - name = 'hk2-utils', | 483 | + name = 'copycat-leader-election', |
503 | - id = 'org.glassfish.hk2:hk2-utils:2.4.0-b34', | 484 | + binary_jar = ':copycat-leader-election-0.5.1.onos.jar', |
504 | - sha1 = 'aacce18411fffef9621d8fc91464ca0477119c38', | 485 | + maven_coords = 'org.onosproject:copycat-leader-election:0.5.1.onos', |
505 | - license = 'Apache2.0', | 486 | + visibility = [ 'PUBLIC' ], |
506 | ) | 487 | ) |
507 | 488 | ||
508 | -maven_jar( | 489 | +remote_file( |
509 | - name = 'hk2-osgi-resource-locator', | 490 | + name = 'copycat-leader-election-0.5.1.onos.jar', |
510 | - id = 'org.glassfish.hk2:osgi-resource-locator:1.0.1', | 491 | + out = 'copycat-leader-election-0.5.1.onos.jar', |
511 | - sha1 = '4ed2b2d4738aed5786cfa64cba5a332779c4c708', | 492 | + url = 'mvn:org.onosproject:copycat-leader-election:jar:0.5.1.onos', |
512 | - license = 'Apache2.0', | 493 | + sha1 = 'a33617e98caf4e909d7ac744e1f6cdd1ba4b1698', |
513 | ) | 494 | ) |
514 | 495 | ||
515 | -maven_jar( | 496 | +prebuilt_jar( |
516 | - name = 'javax.inject', | 497 | + name = 'copycat-protocol', |
517 | - id = 'org.glassfish.hk2.external:javax.inject:2.4.0-b34', | 498 | + binary_jar = ':copycat-protocol-1.0.0-rc4.jar', |
518 | - sha1 = 'a6a3d4935af7b03e44126b5aac2c2a0ce98fe6e9', | 499 | + maven_coords = 'io.atomix.copycat:copycat-protocol:1.0.0-rc4', |
519 | - license = 'Apache2.0', | 500 | + visibility = [ 'PUBLIC' ], |
520 | ) | 501 | ) |
521 | 502 | ||
522 | -maven_jar( | 503 | +remote_file( |
523 | - name = 'jersey-container-grizzly2-http', | 504 | + name = 'copycat-protocol-1.0.0-rc4.jar', |
524 | - id = 'org.glassfish.jersey.containers:jersey-container-grizzly2-http:2.22.2', | 505 | + out = 'copycat-protocol-1.0.0-rc4.jar', |
525 | - sha1 = '7f4f0cb7cfad277a4a6d91298d9f2ac309e4383b', | 506 | + url = 'mvn:io.atomix.copycat:copycat-protocol:jar:1.0.0-rc4', |
526 | - license = 'Apache2.0', | 507 | + sha1 = 'cea774c2e4ce7021a6bfca64fd885e875f01f4dc', |
527 | ) | 508 | ) |
528 | 509 | ||
529 | -maven_jar( | 510 | +prebuilt_jar( |
530 | - name = 'grizzly-http-server', | 511 | + name = 'copycat-server', |
531 | - id = 'org.glassfish.grizzly:grizzly-http-server:2.3.23', | 512 | + binary_jar = ':copycat-server-1.0.0-rc4.jar', |
532 | - sha1 = '4aaf209163d8dca1bfb1907f19c7fd1f2f3ebbf9', | 513 | + maven_coords = 'io.atomix.copycat:copycat-server:1.0.0-rc4', |
533 | - license = 'Apache2.0', | 514 | + visibility = [ 'PUBLIC' ], |
534 | ) | 515 | ) |
535 | 516 | ||
536 | -maven_jar( | 517 | +remote_file( |
537 | - name = 'grizzly-http', | 518 | + name = 'copycat-server-1.0.0-rc4.jar', |
538 | - id = 'org.glassfish.grizzly:grizzly-http:2.3.23', | 519 | + out = 'copycat-server-1.0.0-rc4.jar', |
539 | - sha1 = '287ea2c8a765b14fbc494749570ff3889ecd7b83', | 520 | + url = 'mvn:io.atomix.copycat:copycat-server:jar:1.0.0-rc4', |
540 | - license = 'Apache2.0', | 521 | + sha1 = 'e2b6603dbd299d7b21685211df509dd4fbd2f0e9', |
541 | ) | 522 | ) |
542 | 523 | ||
543 | -maven_jar( | 524 | +prebuilt_jar( |
544 | - name = 'grizzly-framework', | 525 | + name = 'copycat-state-log', |
545 | - id = 'org.glassfish.grizzly:grizzly-framework:2.3.23', | 526 | + binary_jar = ':copycat-state-log-0.5.1.onos.jar', |
546 | - sha1 = '262913b1a7ec4156e7e6aa3f8854a4d1a54940b0', | 527 | + maven_coords = 'org.onosproject:copycat-state-log:0.5.1.onos', |
547 | - license = 'Apache2.0', | 528 | + visibility = [ 'PUBLIC' ], |
548 | ) | 529 | ) |
549 | 530 | ||
550 | -maven_jar( | 531 | +remote_file( |
551 | - name = 'javax.annotation-api', | 532 | + name = 'copycat-state-log-0.5.1.onos.jar', |
552 | - id = 'javax.annotation:javax.annotation-api:1.2', | 533 | + out = 'copycat-state-log-0.5.1.onos.jar', |
553 | - sha1 = '479c1e06db31c432330183f5cae684163f186146', | 534 | + url = 'mvn:org.onosproject:copycat-state-log:jar:0.5.1.onos', |
554 | - license = 'Apache2.0', | 535 | + sha1 = '1dfa2b4c6da1cdc453fd3740cd506b9570f118ea', |
555 | ) | 536 | ) |
556 | 537 | ||
557 | -maven_jar( | 538 | +prebuilt_jar( |
558 | - name = 'validation-api', | 539 | + name = 'copycat-state-machine', |
559 | - id = 'javax.validation:validation-api:1.1.0.Final', | 540 | + binary_jar = ':copycat-state-machine-0.5.1.onos.jar', |
560 | - sha1 = '8613ae82954779d518631e05daa73a6a954817d5', | 541 | + maven_coords = 'org.onosproject:copycat-state-machine:0.5.1.onos', |
561 | - license = 'Apache2.0', | 542 | + visibility = [ 'PUBLIC' ], |
543 | +) | ||
544 | + | ||
545 | +remote_file( | ||
546 | + name = 'copycat-state-machine-0.5.1.onos.jar', | ||
547 | + out = 'copycat-state-machine-0.5.1.onos.jar', | ||
548 | + url = 'mvn:org.onosproject:copycat-state-machine:jar:0.5.1.onos', | ||
549 | + sha1 = '03f924b5c818c0684bdfa6c502e5fff8e07d6b77', | ||
550 | +) | ||
551 | + | ||
552 | +prebuilt_jar( | ||
553 | + name = 'easymock', | ||
554 | + binary_jar = ':easymock-3.4.jar', | ||
555 | + maven_coords = 'org.easymock:easymock:3.4', | ||
556 | + visibility = [ 'PUBLIC' ], | ||
557 | +) | ||
558 | + | ||
559 | +remote_file( | ||
560 | + name = 'easymock-3.4.jar', | ||
561 | + out = 'easymock-3.4.jar', | ||
562 | + url = 'mvn:org.easymock:easymock:jar:3.4', | ||
563 | + sha1 = '9fdeea183a399f25c2469497612cad131e920fa3', | ||
564 | +) | ||
565 | + | ||
566 | +prebuilt_jar( | ||
567 | + name = 'error_prone_annotations', | ||
568 | + binary_jar = ':error_prone_annotations-2.0.2.jar', | ||
569 | + maven_coords = 'com.google.errorprone:error_prone_annotations:2.0.2', | ||
570 | + visibility = [ 'PUBLIC' ], | ||
571 | +) | ||
572 | + | ||
573 | +remote_file( | ||
574 | + name = 'error_prone_annotations-2.0.2.jar', | ||
575 | + out = 'error_prone_annotations-2.0.2.jar', | ||
576 | + url = 'mvn:com.google.errorprone:error_prone_annotations:jar:2.0.2', | ||
577 | + sha1 = '8382c6cdc18c8c8ad7840024fa340509cf16be11', | ||
578 | +) | ||
579 | + | ||
580 | +prebuilt_jar( | ||
581 | + name = 'ganymed-ssh2', | ||
582 | + binary_jar = ':ganymed-ssh2-262.jar', | ||
583 | + maven_coords = 'ch.ethz.ganymed:ganymed-ssh2:262', | ||
584 | + visibility = [ 'PUBLIC' ], | ||
585 | +) | ||
586 | + | ||
587 | +remote_file( | ||
588 | + name = 'ganymed-ssh2-262.jar', | ||
589 | + out = 'ganymed-ssh2-262.jar', | ||
590 | + url = 'mvn:ch.ethz.ganymed:ganymed-ssh2:jar:262', | ||
591 | + sha1 = '7761dc665d0f6993dc846d914214fb93291e2bdf', | ||
592 | +) | ||
593 | + | ||
594 | +prebuilt_jar( | ||
595 | + name = 'grizzly-framework', | ||
596 | + binary_jar = ':grizzly-framework-2.3.23.jar', | ||
597 | + maven_coords = 'org.glassfish.grizzly:grizzly-framework:2.3.23', | ||
598 | + visibility = [ 'PUBLIC' ], | ||
599 | +) | ||
600 | + | ||
601 | +remote_file( | ||
602 | + name = 'grizzly-framework-2.3.23.jar', | ||
603 | + out = 'grizzly-framework-2.3.23.jar', | ||
604 | + url = 'mvn:org.glassfish.grizzly:grizzly-framework:jar:2.3.23', | ||
605 | + sha1 = '262913b1a7ec4156e7e6aa3f8854a4d1a54940b0', | ||
606 | +) | ||
607 | + | ||
608 | +prebuilt_jar( | ||
609 | + name = 'grizzly-http', | ||
610 | + binary_jar = ':grizzly-http-2.3.23.jar', | ||
611 | + maven_coords = 'org.glassfish.grizzly:grizzly-http:2.3.23', | ||
612 | + visibility = [ 'PUBLIC' ], | ||
613 | +) | ||
614 | + | ||
615 | +remote_file( | ||
616 | + name = 'grizzly-http-2.3.23.jar', | ||
617 | + out = 'grizzly-http-2.3.23.jar', | ||
618 | + url = 'mvn:org.glassfish.grizzly:grizzly-http:jar:2.3.23', | ||
619 | + sha1 = '287ea2c8a765b14fbc494749570ff3889ecd7b83', | ||
620 | +) | ||
621 | + | ||
622 | +prebuilt_jar( | ||
623 | + name = 'grizzly-http-server', | ||
624 | + binary_jar = ':grizzly-http-server-2.3.23.jar', | ||
625 | + maven_coords = 'org.glassfish.grizzly:grizzly-http-server:2.3.23', | ||
626 | + visibility = [ 'PUBLIC' ], | ||
627 | +) | ||
628 | + | ||
629 | +remote_file( | ||
630 | + name = 'grizzly-http-server-2.3.23.jar', | ||
631 | + out = 'grizzly-http-server-2.3.23.jar', | ||
632 | + url = 'mvn:org.glassfish.grizzly:grizzly-http-server:jar:2.3.23', | ||
633 | + sha1 = '4aaf209163d8dca1bfb1907f19c7fd1f2f3ebbf9', | ||
634 | +) | ||
635 | + | ||
636 | +prebuilt_jar( | ||
637 | + name = 'guava', | ||
638 | + binary_jar = ':guava-19.0.jar', | ||
639 | + maven_coords = 'com.google.guava:guava:19.0', | ||
640 | + visibility = [ 'PUBLIC' ], | ||
641 | +) | ||
642 | + | ||
643 | +remote_file( | ||
644 | + name = 'guava-19.0.jar', | ||
645 | + out = 'guava-19.0.jar', | ||
646 | + url = 'mvn:com.google.guava:guava:jar:19.0', | ||
647 | + sha1 = '6ce200f6b23222af3d8abb6b6459e6c44f4bb0e9', | ||
648 | +) | ||
649 | + | ||
650 | +prebuilt_jar( | ||
651 | + name = 'guava-testlib', | ||
652 | + binary_jar = ':guava-testlib-19.0.jar', | ||
653 | + maven_coords = 'com.google.guava:guava-testlib:19.0', | ||
654 | + visibility = [ 'PUBLIC' ], | ||
655 | +) | ||
656 | + | ||
657 | +remote_file( | ||
658 | + name = 'guava-testlib-19.0.jar', | ||
659 | + out = 'guava-testlib-19.0.jar', | ||
660 | + url = 'mvn:com.google.guava:guava-testlib:jar:19.0', | ||
661 | + sha1 = 'ce5b880b206de3f76d364988a6308c68c726f74a', | ||
662 | +) | ||
663 | + | ||
664 | +prebuilt_jar( | ||
665 | + name = 'hamcrest-all', | ||
666 | + binary_jar = ':hamcrest-all-1.3.jar', | ||
667 | + maven_coords = 'org.hamcrest:hamcrest-all:1.3', | ||
668 | + visibility = [ 'PUBLIC' ], | ||
669 | +) | ||
670 | + | ||
671 | +remote_file( | ||
672 | + name = 'hamcrest-all-1.3.jar', | ||
673 | + out = 'hamcrest-all-1.3.jar', | ||
674 | + url = 'mvn:org.hamcrest:hamcrest-all:jar:1.3', | ||
675 | + sha1 = '63a21ebc981131004ad02e0434e799fd7f3a8d5a', | ||
676 | +) | ||
677 | + | ||
678 | +prebuilt_jar( | ||
679 | + name = 'hamcrest-core', | ||
680 | + binary_jar = ':hamcrest-core-1.3.jar', | ||
681 | + maven_coords = 'org.hamcrest:hamcrest-core:1.3', | ||
682 | + visibility = [ 'PUBLIC' ], | ||
683 | +) | ||
684 | + | ||
685 | +remote_file( | ||
686 | + name = 'hamcrest-core-1.3.jar', | ||
687 | + out = 'hamcrest-core-1.3.jar', | ||
688 | + url = 'mvn:org.hamcrest:hamcrest-core:jar:1.3', | ||
689 | + sha1 = '42a25dc3219429f0e5d060061f71acb49bf010a0', | ||
690 | +) | ||
691 | + | ||
692 | +prebuilt_jar( | ||
693 | + name = 'hamcrest-library', | ||
694 | + binary_jar = ':hamcrest-library-1.3.jar', | ||
695 | + maven_coords = 'org.hamcrest:hamcrest-library:1.3', | ||
696 | + visibility = [ 'PUBLIC' ], | ||
697 | +) | ||
698 | + | ||
699 | +remote_file( | ||
700 | + name = 'hamcrest-library-1.3.jar', | ||
701 | + out = 'hamcrest-library-1.3.jar', | ||
702 | + url = 'mvn:org.hamcrest:hamcrest-library:jar:1.3', | ||
703 | + sha1 = '4785a3c21320980282f9f33d0d1264a69040538f', | ||
704 | +) | ||
705 | + | ||
706 | +prebuilt_jar( | ||
707 | + name = 'hk2-api', | ||
708 | + binary_jar = ':hk2-api-2.4.0-b34.jar', | ||
709 | + maven_coords = 'org.glassfish.hk2:hk2-api:2.4.0-b34', | ||
710 | + visibility = [ 'PUBLIC' ], | ||
711 | +) | ||
712 | + | ||
713 | +remote_file( | ||
714 | + name = 'hk2-api-2.4.0-b34.jar', | ||
715 | + out = 'hk2-api-2.4.0-b34.jar', | ||
716 | + url = 'mvn:org.glassfish.hk2:hk2-api:jar:2.4.0-b34', | ||
717 | + sha1 = '1017432e219dbd1d4a1121b2d7e87c5b2f0bcfb9', | ||
718 | +) | ||
719 | + | ||
720 | +prebuilt_jar( | ||
721 | + name = 'hk2-locator', | ||
722 | + binary_jar = ':hk2-locator-2.4.0-b34.jar', | ||
723 | + maven_coords = 'org.glassfish.hk2:hk2-locator:2.4.0-b34', | ||
724 | + visibility = [ 'PUBLIC' ], | ||
725 | +) | ||
726 | + | ||
727 | +remote_file( | ||
728 | + name = 'hk2-locator-2.4.0-b34.jar', | ||
729 | + out = 'hk2-locator-2.4.0-b34.jar', | ||
730 | + url = 'mvn:org.glassfish.hk2:hk2-locator:jar:2.4.0-b34', | ||
731 | + sha1 = '1451fc3e5b7f00d7a5ca0feaff2c1bf68be5ac91', | ||
732 | +) | ||
733 | + | ||
734 | +prebuilt_jar( | ||
735 | + name = 'hk2-osgi-resource-locator', | ||
736 | + binary_jar = ':osgi-resource-locator-1.0.1.jar', | ||
737 | + maven_coords = 'org.glassfish.hk2:osgi-resource-locator:1.0.1', | ||
738 | + visibility = [ 'PUBLIC' ], | ||
739 | +) | ||
740 | + | ||
741 | +remote_file( | ||
742 | + name = 'osgi-resource-locator-1.0.1.jar', | ||
743 | + out = 'osgi-resource-locator-1.0.1.jar', | ||
744 | + url = 'mvn:org.glassfish.hk2:osgi-resource-locator:jar:1.0.1', | ||
745 | + sha1 = '4ed2b2d4738aed5786cfa64cba5a332779c4c708', | ||
746 | +) | ||
747 | + | ||
748 | +prebuilt_jar( | ||
749 | + name = 'hk2-utils', | ||
750 | + binary_jar = ':hk2-utils-2.4.0-b34.jar', | ||
751 | + maven_coords = 'org.glassfish.hk2:hk2-utils:2.4.0-b34', | ||
752 | + visibility = [ 'PUBLIC' ], | ||
753 | +) | ||
754 | + | ||
755 | +remote_file( | ||
756 | + name = 'hk2-utils-2.4.0-b34.jar', | ||
757 | + out = 'hk2-utils-2.4.0-b34.jar', | ||
758 | + url = 'mvn:org.glassfish.hk2:hk2-utils:jar:2.4.0-b34', | ||
759 | + sha1 = 'aacce18411fffef9621d8fc91464ca0477119c38', | ||
760 | +) | ||
761 | + | ||
762 | +prebuilt_jar( | ||
763 | + name = 'httpclient-osgi', | ||
764 | + binary_jar = ':httpclient-osgi-4.5.1.jar', | ||
765 | + maven_coords = 'org.apache.httpcomponents:httpclient-osgi:4.5.1', | ||
766 | + visibility = [ 'PUBLIC' ], | ||
767 | +) | ||
768 | + | ||
769 | +remote_file( | ||
770 | + name = 'httpclient-osgi-4.5.1.jar', | ||
771 | + out = 'httpclient-osgi-4.5.1.jar', | ||
772 | + url = 'mvn:org.apache.httpcomponents:httpclient-osgi:jar:4.5.1', | ||
773 | + sha1 = '0220a68ff36e5b0fa71b5dc0b1dc1d4ad2dcf524', | ||
774 | +) | ||
775 | + | ||
776 | +prebuilt_jar( | ||
777 | + name = 'httpcore-osgi', | ||
778 | + binary_jar = ':httpcore-osgi-4.4.4.jar', | ||
779 | + maven_coords = 'org.apache.httpcomponents:httpcore-osgi:4.4.4', | ||
780 | + visibility = [ 'PUBLIC' ], | ||
781 | +) | ||
782 | + | ||
783 | +remote_file( | ||
784 | + name = 'httpcore-osgi-4.4.4.jar', | ||
785 | + out = 'httpcore-osgi-4.4.4.jar', | ||
786 | + url = 'mvn:org.apache.httpcomponents:httpcore-osgi:jar:4.4.4', | ||
787 | + sha1 = 'd5c14055e569afca96f4603d6f9d467bc72ccba8', | ||
788 | +) | ||
789 | + | ||
790 | +prebuilt_jar( | ||
791 | + name = 'influxdb-java', | ||
792 | + binary_jar = ':influxdb-java-2.1.jar', | ||
793 | + maven_coords = 'org.influxdb:influxdb-java:2.1', | ||
794 | + visibility = [ 'PUBLIC' ], | ||
795 | +) | ||
796 | + | ||
797 | +remote_file( | ||
798 | + name = 'influxdb-java-2.1.jar', | ||
799 | + out = 'influxdb-java-2.1.jar', | ||
800 | + url = 'mvn:org.influxdb:influxdb-java:jar:2.1', | ||
801 | + sha1 = 'd2fe39fb8db1d823e64fc7ea54b779e1cab917c7', | ||
802 | +) | ||
803 | + | ||
804 | +prebuilt_jar( | ||
805 | + name = 'jackson-annotations', | ||
806 | + binary_jar = ':jackson-annotations-2.7.0.jar', | ||
807 | + maven_coords = 'com.fasterxml.jackson.core:jackson-annotations:2.7.0', | ||
808 | + visibility = [ 'PUBLIC' ], | ||
809 | +) | ||
810 | + | ||
811 | +remote_file( | ||
812 | + name = 'jackson-annotations-2.7.0.jar', | ||
813 | + out = 'jackson-annotations-2.7.0.jar', | ||
814 | + url = 'mvn:com.fasterxml.jackson.core:jackson-annotations:jar:2.7.0', | ||
815 | + sha1 = '19f42c154ffc689f40a77613bc32caeb17d744e3', | ||
816 | +) | ||
817 | + | ||
818 | +prebuilt_jar( | ||
819 | + name = 'jackson-core', | ||
820 | + binary_jar = ':jackson-core-2.7.0.jar', | ||
821 | + maven_coords = 'com.fasterxml.jackson.core:jackson-core:2.7.0', | ||
822 | + visibility = [ 'PUBLIC' ], | ||
823 | +) | ||
824 | + | ||
825 | +remote_file( | ||
826 | + name = 'jackson-core-2.7.0.jar', | ||
827 | + out = 'jackson-core-2.7.0.jar', | ||
828 | + url = 'mvn:com.fasterxml.jackson.core:jackson-core:jar:2.7.0', | ||
829 | + sha1 = '05f2bfd0866bcacbcc7c25ce25f80b5aeed0f72f', | ||
830 | +) | ||
831 | + | ||
832 | +prebuilt_jar( | ||
833 | + name = 'jackson-databind', | ||
834 | + binary_jar = ':jackson-databind-2.7.0.jar', | ||
835 | + maven_coords = 'com.fasterxml.jackson.core:jackson-databind:2.7.0', | ||
836 | + visibility = [ 'PUBLIC' ], | ||
837 | +) | ||
838 | + | ||
839 | +remote_file( | ||
840 | + name = 'jackson-databind-2.7.0.jar', | ||
841 | + out = 'jackson-databind-2.7.0.jar', | ||
842 | + url = 'mvn:com.fasterxml.jackson.core:jackson-databind:jar:2.7.0', | ||
843 | + sha1 = '7d3430de9f2b600b074ba3bc007edcfbc4bbf4fb', | ||
844 | +) | ||
845 | + | ||
846 | +prebuilt_jar( | ||
847 | + name = 'javax.annotation-api', | ||
848 | + binary_jar = ':javax.annotation-api-1.2.jar', | ||
849 | + maven_coords = 'javax.annotation:javax.annotation-api:1.2', | ||
850 | + visibility = [ 'PUBLIC' ], | ||
851 | +) | ||
852 | + | ||
853 | +remote_file( | ||
854 | + name = 'javax.annotation-api-1.2.jar', | ||
855 | + out = 'javax.annotation-api-1.2.jar', | ||
856 | + url = 'mvn:javax.annotation:javax.annotation-api:jar:1.2', | ||
857 | + sha1 = '479c1e06db31c432330183f5cae684163f186146', | ||
858 | +) | ||
859 | + | ||
860 | +prebuilt_jar( | ||
861 | + name = 'javax.inject', | ||
862 | + binary_jar = ':javax.inject-2.4.0-b34.jar', | ||
863 | + maven_coords = 'org.glassfish.hk2.external:javax.inject:2.4.0-b34', | ||
864 | + visibility = [ 'PUBLIC' ], | ||
865 | +) | ||
866 | + | ||
867 | +remote_file( | ||
868 | + name = 'javax.inject-2.4.0-b34.jar', | ||
869 | + out = 'javax.inject-2.4.0-b34.jar', | ||
870 | + url = 'mvn:org.glassfish.hk2.external:javax.inject:jar:2.4.0-b34', | ||
871 | + sha1 = 'a6a3d4935af7b03e44126b5aac2c2a0ce98fe6e9', | ||
872 | +) | ||
873 | + | ||
874 | +prebuilt_jar( | ||
875 | + name = 'javax.ws.rs-api', | ||
876 | + binary_jar = ':javax.ws.rs-api-2.0.1.jar', | ||
877 | + maven_coords = 'javax.ws.rs:javax.ws.rs-api:2.0.1', | ||
878 | + visibility = [ 'PUBLIC' ], | ||
879 | +) | ||
880 | + | ||
881 | +remote_file( | ||
882 | + name = 'javax.ws.rs-api-2.0.1.jar', | ||
883 | + out = 'javax.ws.rs-api-2.0.1.jar', | ||
884 | + url = 'mvn:javax.ws.rs:javax.ws.rs-api:jar:2.0.1', | ||
885 | + sha1 = '104e9c2b5583cfcfeac0402316221648d6d8ea6b', | ||
886 | +) | ||
887 | + | ||
888 | +prebuilt_jar( | ||
889 | + name = 'jersey-client', | ||
890 | + binary_jar = ':jersey-client-2.22.2.jar', | ||
891 | + maven_coords = 'org.glassfish.jersey.core:jersey-client:2.22.2', | ||
892 | + visibility = [ 'PUBLIC' ], | ||
893 | +) | ||
894 | + | ||
895 | +remote_file( | ||
896 | + name = 'jersey-client-2.22.2.jar', | ||
897 | + out = 'jersey-client-2.22.2.jar', | ||
898 | + url = 'mvn:org.glassfish.jersey.core:jersey-client:jar:2.22.2', | ||
899 | + sha1 = '1712fff037ce5a59e3d67f90fff29222989799ee', | ||
900 | +) | ||
901 | + | ||
902 | +prebuilt_jar( | ||
903 | + name = 'jersey-common', | ||
904 | + binary_jar = ':jersey-common-2.22.2.jar', | ||
905 | + maven_coords = 'org.glassfish.jersey.core:jersey-common:2.22.2', | ||
906 | + visibility = [ 'PUBLIC' ], | ||
907 | +) | ||
908 | + | ||
909 | +remote_file( | ||
910 | + name = 'jersey-common-2.22.2.jar', | ||
911 | + out = 'jersey-common-2.22.2.jar', | ||
912 | + url = 'mvn:org.glassfish.jersey.core:jersey-common:jar:2.22.2', | ||
913 | + sha1 = '1209b89878b60ce7d49afadeff7522d2fde0e217', | ||
914 | +) | ||
915 | + | ||
916 | +prebuilt_jar( | ||
917 | + name = 'jersey-container-grizzly2-http', | ||
918 | + binary_jar = ':jersey-container-grizzly2-http-2.22.2.jar', | ||
919 | + maven_coords = 'org.glassfish.jersey.containers:jersey-container-grizzly2-http:2.22.2', | ||
920 | + visibility = [ 'PUBLIC' ], | ||
921 | +) | ||
922 | + | ||
923 | +remote_file( | ||
924 | + name = 'jersey-container-grizzly2-http-2.22.2.jar', | ||
925 | + out = 'jersey-container-grizzly2-http-2.22.2.jar', | ||
926 | + url = 'mvn:org.glassfish.jersey.containers:jersey-container-grizzly2-http:jar:2.22.2', | ||
927 | + sha1 = '7f4f0cb7cfad277a4a6d91298d9f2ac309e4383b', | ||
928 | +) | ||
929 | + | ||
930 | +prebuilt_jar( | ||
931 | + name = 'jersey-guava', | ||
932 | + binary_jar = ':jersey-guava-2.22.2.jar', | ||
933 | + maven_coords = 'org.glassfish.jersey.bundles.repackaged:jersey-guava:2.22.2', | ||
934 | + visibility = [ 'PUBLIC' ], | ||
935 | +) | ||
936 | + | ||
937 | +remote_file( | ||
938 | + name = 'jersey-guava-2.22.2.jar', | ||
939 | + out = 'jersey-guava-2.22.2.jar', | ||
940 | + url = 'mvn:org.glassfish.jersey.bundles.repackaged:jersey-guava:jar:2.22.2', | ||
941 | + sha1 = '7422c693c89640c9685dfa99dbef2da745aa4617', | ||
942 | +) | ||
943 | + | ||
944 | +prebuilt_jar( | ||
945 | + name = 'jersey-media-multipart', | ||
946 | + binary_jar = ':jersey-media-multipart-2.22.2.jar', | ||
947 | + maven_coords = 'org.glassfish.jersey.media:jersey-media-multipart:2.22.2', | ||
948 | + visibility = [ 'PUBLIC' ], | ||
949 | +) | ||
950 | + | ||
951 | +remote_file( | ||
952 | + name = 'jersey-media-multipart-2.22.2.jar', | ||
953 | + out = 'jersey-media-multipart-2.22.2.jar', | ||
954 | + url = 'mvn:org.glassfish.jersey.media:jersey-media-multipart:jar:2.22.2', | ||
955 | + sha1 = '304107e42563307acd337c20734148cca41cda91', | ||
956 | +) | ||
957 | + | ||
958 | +prebuilt_jar( | ||
959 | + name = 'jersey-server', | ||
960 | + binary_jar = ':jersey-server-2.22.2.jar', | ||
961 | + maven_coords = 'org.glassfish.jersey.core:jersey-server:2.22.2', | ||
962 | + visibility = [ 'PUBLIC' ], | ||
963 | +) | ||
964 | + | ||
965 | +remote_file( | ||
966 | + name = 'jersey-server-2.22.2.jar', | ||
967 | + out = 'jersey-server-2.22.2.jar', | ||
968 | + url = 'mvn:org.glassfish.jersey.core:jersey-server:jar:2.22.2', | ||
969 | + sha1 = '5ede3e5f98f8b14d31d1d0fffe9908df2bd41c0f', | ||
970 | +) | ||
971 | + | ||
972 | +prebuilt_jar( | ||
973 | + name = 'jersey-test-framework-core', | ||
974 | + binary_jar = ':jersey-test-framework-core-2.22.2.jar', | ||
975 | + maven_coords = 'org.glassfish.jersey.test-framework:jersey-test-framework-core:2.22.2', | ||
976 | + visibility = [ 'PUBLIC' ], | ||
977 | +) | ||
978 | + | ||
979 | +remote_file( | ||
980 | + name = 'jersey-test-framework-core-2.22.2.jar', | ||
981 | + out = 'jersey-test-framework-core-2.22.2.jar', | ||
982 | + url = 'mvn:org.glassfish.jersey.test-framework:jersey-test-framework-core:jar:2.22.2', | ||
983 | + sha1 = '0abc7ab1ac424392d8761798318f706de40fef4d', | ||
984 | +) | ||
985 | + | ||
986 | +prebuilt_jar( | ||
987 | + name = 'jersey-test-framework-grizzly2', | ||
988 | + binary_jar = ':jersey-test-framework-provider-grizzly2-2.22.2.jar', | ||
989 | + maven_coords = 'org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-grizzly2:2.22.2', | ||
990 | + visibility = [ 'PUBLIC' ], | ||
991 | +) | ||
992 | + | ||
993 | +remote_file( | ||
994 | + name = 'jersey-test-framework-provider-grizzly2-2.22.2.jar', | ||
995 | + out = 'jersey-test-framework-provider-grizzly2-2.22.2.jar', | ||
996 | + url = 'mvn:org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-grizzly2:jar:2.22.2', | ||
997 | + sha1 = '05aa3952528f09ce94360ab238446163d2544344', | ||
998 | +) | ||
999 | + | ||
1000 | +prebuilt_jar( | ||
1001 | + name = 'jetty-util', | ||
1002 | + binary_jar = ':jetty-util-8.1.18.v20150929.jar', | ||
1003 | + maven_coords = 'org.eclipse.jetty:jetty-util:8.1.18.v20150929', | ||
1004 | + visibility = [ 'PUBLIC' ], | ||
1005 | +) | ||
1006 | + | ||
1007 | +remote_file( | ||
1008 | + name = 'jetty-util-8.1.18.v20150929.jar', | ||
1009 | + out = 'jetty-util-8.1.18.v20150929.jar', | ||
1010 | + url = 'mvn:org.eclipse.jetty:jetty-util:jar:8.1.18.v20150929', | ||
1011 | + sha1 = 'fb8fb3debf99a626c827535bf06451a337c6b085', | ||
1012 | +) | ||
1013 | + | ||
1014 | +prebuilt_jar( | ||
1015 | + name = 'jetty-websocket', | ||
1016 | + binary_jar = ':jetty-websocket-8.1.18.v20150929.jar', | ||
1017 | + maven_coords = 'org.eclipse.jetty:jetty-websocket:8.1.18.v20150929', | ||
1018 | + visibility = [ 'PUBLIC' ], | ||
1019 | +) | ||
1020 | + | ||
1021 | +remote_file( | ||
1022 | + name = 'jetty-websocket-8.1.18.v20150929.jar', | ||
1023 | + out = 'jetty-websocket-8.1.18.v20150929.jar', | ||
1024 | + url = 'mvn:org.eclipse.jetty:jetty-websocket:jar:8.1.18.v20150929', | ||
1025 | + sha1 = '4a1610515aed4f02e7cb6ab0db564489d4d44d9f', | ||
1026 | +) | ||
1027 | + | ||
1028 | +prebuilt_jar( | ||
1029 | + name = 'joda-time', | ||
1030 | + binary_jar = ':joda-time-2.9.jar', | ||
1031 | + maven_coords = 'joda-time:joda-time:2.9', | ||
1032 | + visibility = [ 'PUBLIC' ], | ||
1033 | +) | ||
1034 | + | ||
1035 | +remote_file( | ||
1036 | + name = 'joda-time-2.9.jar', | ||
1037 | + out = 'joda-time-2.9.jar', | ||
1038 | + url = 'mvn:joda-time:joda-time:jar:2.9', | ||
1039 | + sha1 = 'e8a58b7f5853b693b8c4795a714fe77c266c3acc', | ||
1040 | +) | ||
1041 | + | ||
1042 | +prebuilt_jar( | ||
1043 | + name = 'jsch', | ||
1044 | + binary_jar = ':jsch-0.1.53.jar', | ||
1045 | + maven_coords = 'com.jcraft:jsch:0.1.53', | ||
1046 | + visibility = [ 'PUBLIC' ], | ||
1047 | +) | ||
1048 | + | ||
1049 | +remote_file( | ||
1050 | + name = 'jsch-0.1.53.jar', | ||
1051 | + out = 'jsch-0.1.53.jar', | ||
1052 | + url = 'mvn:com.jcraft:jsch:jar:0.1.53', | ||
1053 | + sha1 = '658b682d5c817b27ae795637dfec047c63d29935', | ||
1054 | +) | ||
1055 | + | ||
1056 | +prebuilt_jar( | ||
1057 | + name = 'jsr305', | ||
1058 | + binary_jar = ':jsr305-3.0.1.jar', | ||
1059 | + maven_coords = 'com.google.code.findbugs:jsr305:3.0.1', | ||
1060 | + visibility = [ 'PUBLIC' ], | ||
1061 | +) | ||
1062 | + | ||
1063 | +remote_file( | ||
1064 | + name = 'jsr305-3.0.1.jar', | ||
1065 | + out = 'jsr305-3.0.1.jar', | ||
1066 | + url = 'mvn:com.google.code.findbugs:jsr305:jar:3.0.1', | ||
1067 | + sha1 = 'f7be08ec23c21485b9b5a1cf1654c2ec8c58168d', | ||
1068 | +) | ||
1069 | + | ||
1070 | +prebuilt_jar( | ||
1071 | + name = 'junit', | ||
1072 | + binary_jar = ':junit-4.12.jar', | ||
1073 | + maven_coords = 'junit:junit:4.12', | ||
1074 | + visibility = [ 'PUBLIC' ], | ||
1075 | +) | ||
1076 | + | ||
1077 | +remote_file( | ||
1078 | + name = 'junit-4.12.jar', | ||
1079 | + out = 'junit-4.12.jar', | ||
1080 | + url = 'mvn:junit:junit:jar:4.12', | ||
1081 | + sha1 = '2973d150c0dc1fefe998f834810d68f278ea58ec', | ||
1082 | +) | ||
1083 | + | ||
1084 | +prebuilt_jar( | ||
1085 | + name = 'kryo', | ||
1086 | + binary_jar = ':kryo-3.0.0.jar', | ||
1087 | + maven_coords = 'com.esotericsoftware:kryo:3.0.0', | ||
1088 | + visibility = [ 'PUBLIC' ], | ||
1089 | +) | ||
1090 | + | ||
1091 | +remote_file( | ||
1092 | + name = 'kryo-3.0.0.jar', | ||
1093 | + out = 'kryo-3.0.0.jar', | ||
1094 | + url = 'mvn:com.esotericsoftware:kryo:jar:3.0.0', | ||
1095 | + sha1 = '86f0de889ece7c30115d27d1c56246fd509201a8', | ||
1096 | +) | ||
1097 | + | ||
1098 | +prebuilt_jar( | ||
1099 | + name = 'mapdb', | ||
1100 | + binary_jar = ':mapdb-1.0.8.jar', | ||
1101 | + maven_coords = 'org.mapdb:mapdb:1.0.8', | ||
1102 | + visibility = [ 'PUBLIC' ], | ||
1103 | +) | ||
1104 | + | ||
1105 | +remote_file( | ||
1106 | + name = 'mapdb-1.0.8.jar', | ||
1107 | + out = 'mapdb-1.0.8.jar', | ||
1108 | + url = 'mvn:org.mapdb:mapdb:jar:1.0.8', | ||
1109 | + sha1 = '64485a221d9095fc7ab9b50cc34c6b4b58467e2e', | ||
1110 | +) | ||
1111 | + | ||
1112 | +prebuilt_jar( | ||
1113 | + name = 'metrics-core', | ||
1114 | + binary_jar = ':metrics-core-3.1.0.jar', | ||
1115 | + maven_coords = 'io.dropwizard.metrics:metrics-core:3.1.0', | ||
1116 | + visibility = [ 'PUBLIC' ], | ||
1117 | +) | ||
1118 | + | ||
1119 | +remote_file( | ||
1120 | + name = 'metrics-core-3.1.0.jar', | ||
1121 | + out = 'metrics-core-3.1.0.jar', | ||
1122 | + url = 'mvn:io.dropwizard.metrics:metrics-core:jar:3.1.0', | ||
1123 | + sha1 = '40e16d596ca49964a88bbce2261e387895b3499e', | ||
1124 | +) | ||
1125 | + | ||
1126 | +prebuilt_jar( | ||
1127 | + name = 'metrics-ganglia', | ||
1128 | + binary_jar = ':metrics-ganglia-3.1.2.jar', | ||
1129 | + maven_coords = 'io.dropwizard.metrics:metrics-ganglia:3.1.2', | ||
1130 | + visibility = [ 'PUBLIC' ], | ||
1131 | +) | ||
1132 | + | ||
1133 | +remote_file( | ||
1134 | + name = 'metrics-ganglia-3.1.2.jar', | ||
1135 | + out = 'metrics-ganglia-3.1.2.jar', | ||
1136 | + url = 'mvn:io.dropwizard.metrics:metrics-ganglia:jar:3.1.2', | ||
1137 | + sha1 = '2a4e2fcd6436f9b1771f0f9b6bab445dddcf704f', | ||
1138 | +) | ||
1139 | + | ||
1140 | +prebuilt_jar( | ||
1141 | + name = 'metrics-graphite', | ||
1142 | + binary_jar = ':metrics-graphite-3.1.2.jar', | ||
1143 | + maven_coords = 'io.dropwizard.metrics:metrics-graphite:3.1.2', | ||
1144 | + visibility = [ 'PUBLIC' ], | ||
1145 | +) | ||
1146 | + | ||
1147 | +remote_file( | ||
1148 | + name = 'metrics-graphite-3.1.2.jar', | ||
1149 | + out = 'metrics-graphite-3.1.2.jar', | ||
1150 | + url = 'mvn:io.dropwizard.metrics:metrics-graphite:jar:3.1.2', | ||
1151 | + sha1 = '15a68399652c6123fe6e4c82ac4f0749e2eb6583', | ||
1152 | +) | ||
1153 | + | ||
1154 | +prebuilt_jar( | ||
1155 | + name = 'metrics-influxdb', | ||
1156 | + binary_jar = ':metrics-influxdb-1.1.1.jar', | ||
1157 | + maven_coords = 'com.izettle:metrics-influxdb:1.1.1', | ||
1158 | + visibility = [ 'PUBLIC' ], | ||
1159 | +) | ||
1160 | + | ||
1161 | +remote_file( | ||
1162 | + name = 'metrics-influxdb-1.1.1.jar', | ||
1163 | + out = 'metrics-influxdb-1.1.1.jar', | ||
1164 | + url = 'mvn:com.izettle:metrics-influxdb:jar:1.1.1', | ||
1165 | + sha1 = 'a911d778c2f8607dd4e7a4cdb9b0cd97adcd0343', | ||
1166 | +) | ||
1167 | + | ||
1168 | +prebuilt_jar( | ||
1169 | + name = 'metrics-json', | ||
1170 | + binary_jar = ':metrics-json-3.1.0.jar', | ||
1171 | + maven_coords = 'io.dropwizard.metrics:metrics-json:3.1.0', | ||
1172 | + visibility = [ 'PUBLIC' ], | ||
1173 | +) | ||
1174 | + | ||
1175 | +remote_file( | ||
1176 | + name = 'metrics-json-3.1.0.jar', | ||
1177 | + out = 'metrics-json-3.1.0.jar', | ||
1178 | + url = 'mvn:io.dropwizard.metrics:metrics-json:jar:3.1.0', | ||
1179 | + sha1 = '47b1c72af77ca81771422269b807ef6198392741', | ||
1180 | +) | ||
1181 | + | ||
1182 | +prebuilt_jar( | ||
1183 | + name = 'minimal-json', | ||
1184 | + binary_jar = ':minimal-json-0.9.4.jar', | ||
1185 | + maven_coords = 'com.eclipsesource.minimal-json:minimal-json:0.9.4', | ||
1186 | + visibility = [ 'PUBLIC' ], | ||
1187 | +) | ||
1188 | + | ||
1189 | +remote_file( | ||
1190 | + name = 'minimal-json-0.9.4.jar', | ||
1191 | + out = 'minimal-json-0.9.4.jar', | ||
1192 | + url = 'mvn:com.eclipsesource.minimal-json:minimal-json:jar:0.9.4', | ||
1193 | + sha1 = 'd6e7dd22569de97c2697a4af301a623f35028972', | ||
1194 | +) | ||
1195 | + | ||
1196 | +prebuilt_jar( | ||
1197 | + name = 'minlog', | ||
1198 | + binary_jar = ':minlog-1.3.0.jar', | ||
1199 | + maven_coords = 'com.esotericsoftware:minlog:1.3.0', | ||
1200 | + visibility = [ 'PUBLIC' ], | ||
562 | ) | 1201 | ) |
563 | 1202 | ||
564 | -maven_jar( | 1203 | +remote_file( |
565 | - name = 'aopalliance-repackaged', | 1204 | + name = 'minlog-1.3.0.jar', |
566 | - id = 'org.glassfish.hk2.external:aopalliance-repackaged:2.4.0-b34', | 1205 | + out = 'minlog-1.3.0.jar', |
567 | - sha1 = '3d5e856dbc91a3a2b0bcb3a3424f8b62421ae4cf', | 1206 | + url = 'mvn:com.esotericsoftware:minlog:jar:1.3.0', |
568 | - license = 'Apache2.0', | 1207 | + sha1 = 'ff07b5f1b01d2f92bb00a337f9a94873712f0827', |
569 | ) | 1208 | ) |
570 | 1209 | ||
571 | -maven_jar( | 1210 | +prebuilt_jar( |
572 | - name = 'jersey-guava', | 1211 | + name = 'netty', |
573 | - id = 'org.glassfish.jersey.bundles.repackaged:jersey-guava:2.22.2', | 1212 | + binary_jar = ':netty-3.10.5.Final.jar', |
574 | - sha1 = '7422c693c89640c9685dfa99dbef2da745aa4617', | 1213 | + maven_coords = 'io.netty:netty:3.10.5.Final', |
575 | - license = 'Apache2.0', | 1214 | + visibility = [ 'PUBLIC' ], |
576 | ) | 1215 | ) |
577 | 1216 | ||
578 | -maven_jar( | 1217 | +remote_file( |
579 | - name = 'servlet-api', | 1218 | + name = 'netty-3.10.5.Final.jar', |
580 | - id = 'javax.servlet:servlet-api:2.5', | 1219 | + out = 'netty-3.10.5.Final.jar', |
581 | - sha1 = '5959582d97d8b61f4d154ca9e495aafd16726e34', | 1220 | + url = 'mvn:io.netty:netty:jar:3.10.5.Final', |
582 | - license = 'Apache2.0', | 1221 | + sha1 = '9ca7d55d246092bddd29b867706e2f6c7db701a0', |
583 | ) | 1222 | ) |
584 | 1223 | ||
585 | -maven_jar( | 1224 | +prebuilt_jar( |
586 | - name = 'atomix', | 1225 | + name = 'netty-buffer', |
587 | - id = 'io.atomix:atomix:1.0.0-rc3', | 1226 | + binary_jar = ':netty-buffer-4.0.33.Final.jar', |
588 | - sha1 = 'a572aa9cd069b2d43481901dc901429d0b43332f', | 1227 | + maven_coords = 'io.netty:netty-buffer:4.0.33.Final', |
589 | - license = 'Apache2.0', | 1228 | + visibility = [ 'PUBLIC' ], |
590 | ) | 1229 | ) |
591 | 1230 | ||
592 | -maven_jar( | 1231 | +remote_file( |
593 | - name = 'atomix-collections', | 1232 | + name = 'netty-buffer-4.0.33.Final.jar', |
594 | - id = 'io.atomix:atomix-collections:1.0.0-rc3', | 1233 | + out = 'netty-buffer-4.0.33.Final.jar', |
595 | - sha1 = '161dbfd046cefabe7e6c972e70823c11f7abe65e', | 1234 | + url = 'mvn:io.netty:netty-buffer:jar:4.0.33.Final', |
596 | - license = 'Apache2.0', | 1235 | + sha1 = 'dd14c35b020af7aa1c6fed7ec5e67a2aa165619e', |
597 | ) | 1236 | ) |
598 | 1237 | ||
599 | -# maven_jar( | 1238 | +prebuilt_jar( |
600 | -# name = 'atomix-coordination', | 1239 | + name = 'netty-codec', |
601 | -# id = 'io.atomix:atomix-coordination:1.0.0-rc3', | 1240 | + binary_jar = ':netty-codec-4.0.33.Final.jar', |
602 | -# sha1 = '182a2618cbef13e6efe58b85aadfa1176b9d08f3', | 1241 | + maven_coords = 'io.netty:netty-codec:4.0.33.Final', |
603 | -# license = 'Apache2.0', | 1242 | + visibility = [ 'PUBLIC' ], |
604 | -# ) | 1243 | +) |
605 | 1244 | ||
606 | -maven_jar( | 1245 | +remote_file( |
607 | - name = 'atomix-messaging', | 1246 | + name = 'netty-codec-4.0.33.Final.jar', |
608 | - id = 'io.atomix:atomix-messaging:1.0.0-rc3', | 1247 | + out = 'netty-codec-4.0.33.Final.jar', |
609 | - sha1 = '58b570d8e3e76a0d0c649b97f3ee0a6e3885958a', | 1248 | + url = 'mvn:io.netty:netty-codec:jar:4.0.33.Final', |
610 | - license = 'Apache2.0', | 1249 | + sha1 = '56c31f1e373a9374f56173383fe8b6e089ea0351', |
611 | ) | 1250 | ) |
612 | 1251 | ||
613 | -maven_jar( | 1252 | +prebuilt_jar( |
614 | - name = 'atomix-resource', | 1253 | + name = 'netty-common', |
615 | - id = 'io.atomix:atomix-resource:1.0.0-rc3', | 1254 | + binary_jar = ':netty-common-4.0.33.Final.jar', |
616 | - sha1 = 'e47a40d38e6241544ec75df0e6906c209190aebf', | 1255 | + maven_coords = 'io.netty:netty-common:4.0.33.Final', |
617 | - license = 'Apache2.0', | 1256 | + visibility = [ 'PUBLIC' ], |
618 | ) | 1257 | ) |
619 | 1258 | ||
620 | -maven_jar( | 1259 | +remote_file( |
621 | - name = 'atomix-resource-manager', | 1260 | + name = 'netty-common-4.0.33.Final.jar', |
622 | - id = 'io.atomix:atomix-resource-manager:1.0.0-rc3', | 1261 | + out = 'netty-common-4.0.33.Final.jar', |
623 | - sha1 = '41a4cf53c27df12efb04832e1314a81c09c857cb', | 1262 | + url = 'mvn:io.netty:netty-common:jar:4.0.33.Final', |
624 | - license = 'Apache2.0', | 1263 | + sha1 = '1a1fde71cb95a6e18754b0fd7ac6749f15a86543', |
625 | ) | 1264 | ) |
626 | 1265 | ||
627 | -maven_jar( | 1266 | +prebuilt_jar( |
628 | - name = 'atomix-variables', | 1267 | + name = 'netty-handler', |
629 | - id = 'io.atomix:atomix-variables:1.0.0-rc3', | 1268 | + binary_jar = ':netty-handler-4.0.33.Final.jar', |
630 | - sha1 = 'dd0ca3c0d211b17b291877e21f0ef10f2aa4a9bd', | 1269 | + maven_coords = 'io.netty:netty-handler:4.0.33.Final', |
631 | - license = 'Apache2.0', | 1270 | + visibility = [ 'PUBLIC' ], |
632 | ) | 1271 | ) |
633 | 1272 | ||
634 | -maven_jar( | 1273 | +remote_file( |
635 | - name = 'catalyst-buffer', | 1274 | + name = 'netty-handler-4.0.33.Final.jar', |
636 | - id = 'io.atomix.catalyst:catalyst-buffer:1.0.4', | 1275 | + out = 'netty-handler-4.0.33.Final.jar', |
637 | - sha1 = '00fb023ebd860d44385750790328aa26a529c75f', | 1276 | + url = 'mvn:io.netty:netty-handler:jar:4.0.33.Final', |
638 | - license = 'Apache2.0', | 1277 | + sha1 = '88325df280c3ba83011cf442883f9f55dc83d5bb', |
639 | ) | 1278 | ) |
640 | 1279 | ||
641 | -maven_jar( | 1280 | +prebuilt_jar( |
642 | - name = 'catalyst-common', | 1281 | + name = 'netty-transport', |
643 | - id = 'io.atomix.catalyst:catalyst-common:1.0.4', | 1282 | + binary_jar = ':netty-transport-4.0.33.Final.jar', |
644 | - sha1 = '69d50a64ecf9f63de430aead9dc4b743d29f0195', | 1283 | + maven_coords = 'io.netty:netty-transport:4.0.33.Final', |
645 | - license = 'Apache2.0', | 1284 | + visibility = [ 'PUBLIC' ], |
646 | ) | 1285 | ) |
647 | 1286 | ||
648 | -maven_jar( | 1287 | +remote_file( |
649 | - name = 'catalyst-local', | 1288 | + name = 'netty-transport-4.0.33.Final.jar', |
650 | - id = 'io.atomix.catalyst:catalyst-local:1.0.4', | 1289 | + out = 'netty-transport-4.0.33.Final.jar', |
651 | - sha1 = 'cbee759c63ce9127c979f4f399d327551644270f', | 1290 | + url = 'mvn:io.netty:netty-transport:jar:4.0.33.Final', |
652 | - license = 'Apache2.0', | 1291 | + sha1 = '287c2378318efc12d6bfe00835cd66317fc53dcd', |
653 | ) | 1292 | ) |
654 | 1293 | ||
655 | -maven_jar( | 1294 | +prebuilt_jar( |
656 | - name = 'catalyst-serializer', | 1295 | + name = 'netty-transport-native-epoll', |
657 | - id = 'io.atomix.catalyst:catalyst-serializer:1.0.4', | 1296 | + binary_jar = ':netty-transport-native-epoll-4.0.33.Final.jar', |
658 | - sha1 = 'e86352776cf4fa17eabf4e1d90fe0587ced4f788', | 1297 | + maven_coords = 'io.netty:netty-transport-native-epoll:4.0.33.Final', |
659 | - license = 'Apache2.0', | 1298 | + visibility = [ 'PUBLIC' ], |
660 | ) | 1299 | ) |
661 | 1300 | ||
662 | -maven_jar( | 1301 | +remote_file( |
663 | - name = 'catalyst-transport', | 1302 | + name = 'netty-transport-native-epoll-4.0.33.Final.jar', |
664 | - id = 'io.atomix.catalyst:catalyst-transport:1.0.4', | 1303 | + out = 'netty-transport-native-epoll-4.0.33.Final.jar', |
665 | - sha1 = 'f36600add086a8848290cad9d6d117634b5bf069', | 1304 | + url = 'mvn:io.netty:netty-transport-native-epoll:jar:4.0.33.Final', |
666 | - license = 'Apache2.0', | 1305 | + sha1 = 'f17c2b172e28e9447e0ecf1a87bc4ce3d45647f0', |
667 | ) | 1306 | ) |
668 | 1307 | ||
669 | -maven_jar( | 1308 | +prebuilt_jar( |
670 | - name = 'copycat-client', | 1309 | + name = 'objenesis', |
671 | - id = 'io.atomix.copycat:copycat-client:1.0.0-rc4', | 1310 | + binary_jar = ':objenesis-2.2.jar', |
672 | - sha1 = '9373c8920a57356b78896d791296a74a2eb868b4', | 1311 | + maven_coords = 'org.objenesis:objenesis:2.2', |
673 | - license = 'Apache2.0', | 1312 | + visibility = [ 'PUBLIC' ], |
674 | ) | 1313 | ) |
675 | 1314 | ||
676 | -maven_jar( | 1315 | +remote_file( |
677 | - name = 'copycat-protocol', | 1316 | + name = 'objenesis-2.2.jar', |
678 | - id = 'io.atomix.copycat:copycat-protocol:1.0.0-rc4', | 1317 | + out = 'objenesis-2.2.jar', |
679 | - sha1 = 'cea774c2e4ce7021a6bfca64fd885e875f01f4dc', | 1318 | + url = 'mvn:org.objenesis:objenesis:jar:2.2', |
680 | - license = 'Apache2.0', | 1319 | + sha1 = '3fb533efdaa50a768c394aa4624144cf8df17845', |
681 | ) | 1320 | ) |
682 | 1321 | ||
683 | -maven_jar( | 1322 | +prebuilt_jar( |
684 | - name = 'copycat-server', | 1323 | + name = 'openflowj', |
685 | - id = 'io.atomix.copycat:copycat-server:1.0.0-rc4', | 1324 | + binary_jar = ':openflowj-0.9.2.onos.jar', |
686 | - sha1 = 'e2b6603dbd299d7b21685211df509dd4fbd2f0e9', | 1325 | + maven_coords = 'org.onosproject:openflowj:0.9.2.onos', |
687 | - license = 'Apache2.0', | 1326 | + visibility = [ 'PUBLIC' ], |
688 | ) | 1327 | ) |
689 | 1328 | ||
690 | -maven_jar( | 1329 | +remote_file( |
691 | - name = 'copycat-core', | 1330 | + name = 'openflowj-0.9.2.onos.jar', |
692 | - id = 'org.onosproject:copycat-core:0.5.1.onos', | 1331 | + out = 'openflowj-0.9.2.onos.jar', |
693 | - sha1 = 'b268f3cbdd57f28244b21b2b8fc08116f63d736d', | 1332 | + url = 'mvn:org.onosproject:openflowj:jar:0.9.2.onos', |
694 | - license = 'Apache2.0', | 1333 | + sha1 = '7cd6a35f6638f8ee3f5415484842bf95a4e619db', |
695 | ) | 1334 | ) |
696 | 1335 | ||
697 | -maven_jar( | 1336 | +prebuilt_jar( |
698 | - name = 'copycat-event-log', | 1337 | + name = 'org.apache.felix.scr', |
699 | - id = 'org.onosproject:copycat-event-log:0.5.1.onos', | 1338 | + binary_jar = ':org.apache.felix.scr-1.8.2.jar', |
700 | - sha1 = 'a9e32b13e6500c66113202e7d123e7184b726054', | 1339 | + maven_coords = 'org.apache.felix:org.apache.felix.scr:1.8.2', |
701 | - license = 'Apache2.0', | 1340 | + visibility = [ 'PUBLIC' ], |
702 | ) | 1341 | ) |
703 | 1342 | ||
704 | -maven_jar( | 1343 | +remote_file( |
705 | - name = 'copycat-leader-election', | 1344 | + name = 'org.apache.felix.scr-1.8.2.jar', |
706 | - id = 'org.onosproject:copycat-leader-election:0.5.1.onos', | 1345 | + out = 'org.apache.felix.scr-1.8.2.jar', |
707 | - sha1 = 'a33617e98caf4e909d7ac744e1f6cdd1ba4b1698', | 1346 | + url = 'mvn:org.apache.felix:org.apache.felix.scr:jar:1.8.2', |
708 | - license = 'Apache2.0', | 1347 | + sha1 = 'c3047d56ee57de0752821fd9c3894dda664f2e37', |
709 | ) | 1348 | ) |
710 | 1349 | ||
711 | -maven_jar( | 1350 | +prebuilt_jar( |
712 | - name = 'copycat-state-log', | 1351 | + name = 'org.apache.felix.scr.annotations', |
713 | - id = 'org.onosproject:copycat-state-log:0.5.1.onos', | 1352 | + binary_jar = ':org.apache.felix.scr.annotations-1.9.12.jar', |
714 | - sha1 = '1dfa2b4c6da1cdc453fd3740cd506b9570f118ea', | 1353 | + maven_coords = 'org.apache.felix:org.apache.felix.scr.annotations:1.9.12', |
715 | - license = 'Apache2.0', | 1354 | + visibility = [ 'PUBLIC' ], |
716 | ) | 1355 | ) |
717 | 1356 | ||
718 | -maven_jar( | 1357 | +remote_file( |
719 | - name = 'copycat-state-machine', | 1358 | + name = 'org.apache.felix.scr.annotations-1.9.12.jar', |
720 | - id = 'org.onosproject:copycat-state-machine:0.5.1.onos', | 1359 | + out = 'org.apache.felix.scr.annotations-1.9.12.jar', |
721 | - sha1 = '03f924b5c818c0684bdfa6c502e5fff8e07d6b77', | 1360 | + url = 'mvn:org.apache.felix:org.apache.felix.scr.annotations:jar:1.9.12', |
722 | - license = 'Apache2.0', | 1361 | + sha1 = '5fdc34da641dda8b9165c2be93211479a186da9c', |
723 | ) | 1362 | ) |
724 | 1363 | ||
725 | -maven_jar( | 1364 | +prebuilt_jar( |
726 | - name = 'copycat-api', | 1365 | + name = 'org.apache.karaf.features.core', |
727 | - id = 'org.onosproject:copycat-api:0.5.1.onos', | 1366 | + binary_jar = ':org.apache.karaf.features.core-3.0.5.jar', |
728 | - sha1 = 'b947348875485814e2a175a0435cdae4138452fc', | 1367 | + maven_coords = 'org.apache.karaf.features:org.apache.karaf.features.core:3.0.5', |
729 | - license = 'Apache2.0', | 1368 | + visibility = [ 'PUBLIC' ], |
730 | ) | 1369 | ) |
731 | 1370 | ||
732 | -maven_jar( | 1371 | +remote_file( |
733 | - name = 'typesafe-config', | 1372 | + name = 'org.apache.karaf.features.core-3.0.5.jar', |
734 | - id = 'com.typesafe:config:1.2.1', | 1373 | + out = 'org.apache.karaf.features.core-3.0.5.jar', |
735 | - sha1 = 'f771f71fdae3df231bcd54d5ca2d57f0bf93f467', | 1374 | + url = 'mvn:org.apache.karaf.features:org.apache.karaf.features.core:jar:3.0.5', |
736 | - license = 'Apache2.0', | 1375 | + sha1 = '595b5ddfc4eccad090cb2a1eb14e2ba3cebcb5de', |
737 | ) | 1376 | ) |
738 | 1377 | ||
739 | -maven_jar( | 1378 | +prebuilt_jar( |
740 | name = 'org.apache.karaf.shell.console', | 1379 | name = 'org.apache.karaf.shell.console', |
741 | - id = 'org.apache.karaf.shell:org.apache.karaf.shell.console:3.0.5', | 1380 | + binary_jar = ':org.apache.karaf.shell.console-3.0.5.jar', |
742 | - sha1 = 'bf60152b180919152f532ddbd96c7563c11bb048', | 1381 | + maven_coords = 'org.apache.karaf.shell:org.apache.karaf.shell.console:3.0.5', |
743 | - license = 'Apache2.0', | 1382 | + visibility = [ 'PUBLIC' ], |
744 | ) | 1383 | ) |
745 | 1384 | ||
746 | -maven_jar( | 1385 | +remote_file( |
747 | - name = 'httpclient-osgi', | 1386 | + name = 'org.apache.karaf.shell.console-3.0.5.jar', |
748 | - id = 'org.apache.httpcomponents:httpclient-osgi:4.5.1', | 1387 | + out = 'org.apache.karaf.shell.console-3.0.5.jar', |
749 | - sha1 = '0220a68ff36e5b0fa71b5dc0b1dc1d4ad2dcf524', | 1388 | + url = 'mvn:org.apache.karaf.shell:org.apache.karaf.shell.console:jar:3.0.5', |
750 | - license = 'Apache2.0', | 1389 | + sha1 = 'bf60152b180919152f532ddbd96c7563c11bb048', |
751 | ) | 1390 | ) |
752 | 1391 | ||
753 | -maven_jar( | 1392 | +prebuilt_jar( |
754 | - name = 'httpcore-osgi', | 1393 | + name = 'org.apache.karaf.system.core', |
755 | - id = 'org.apache.httpcomponents:httpcore-osgi:4.4.4', | 1394 | + binary_jar = ':org.apache.karaf.system.core-3.0.5.jar', |
756 | - sha1 = 'd5c14055e569afca96f4603d6f9d467bc72ccba8', | 1395 | + maven_coords = 'org.apache.karaf.system:org.apache.karaf.system.core:3.0.5', |
757 | - license = 'Apache2.0', | 1396 | + visibility = [ 'PUBLIC' ], |
758 | ) | 1397 | ) |
759 | 1398 | ||
760 | -maven_jar( | 1399 | +remote_file( |
761 | - name = 'ganymed-ssh2', | 1400 | + name = 'org.apache.karaf.system.core-3.0.5.jar', |
762 | - id = 'ch.ethz.ganymed:ganymed-ssh2:262', | 1401 | + out = 'org.apache.karaf.system.core-3.0.5.jar', |
763 | - sha1 = '7761dc665d0f6993dc846d914214fb93291e2bdf', | 1402 | + url = 'mvn:org.apache.karaf.system:org.apache.karaf.system.core:jar:3.0.5', |
764 | - license = 'Apache2.0', | 1403 | + sha1 = '9740da22ad1c07b2651d837277f0e910a2fc2300', |
765 | ) | 1404 | ) |
766 | 1405 | ||
767 | -maven_jar( | 1406 | +prebuilt_jar( |
768 | - name = 'openflowj', | 1407 | + name = 'org.apache.servicemix.bundles.snmp4j', |
769 | - id = 'org.onosproject:openflowj:0.9.2.onos', | 1408 | + binary_jar = ':org.apache.servicemix.bundles.snmp4j-2.3.4_1.jar', |
770 | - sha1 = '7cd6a35f6638f8ee3f5415484842bf95a4e619db', | 1409 | + maven_coords = 'org.apache.servicemix.bundles:org.apache.servicemix.bundles.snmp4j:2.3.4_1', |
771 | - license = 'Apache2.0', | 1410 | + visibility = [ 'PUBLIC' ], |
772 | ) | 1411 | ) |
773 | 1412 | ||
774 | -maven_jar( | 1413 | +remote_file( |
775 | - name = 'org.apache.servicemix.bundles.snmp4j', | 1414 | + name = 'org.apache.servicemix.bundles.snmp4j-2.3.4_1.jar', |
776 | - id = 'org.apache.servicemix.bundles:org.apache.servicemix.bundles.snmp4j:2.3.4_1', | 1415 | + out = 'org.apache.servicemix.bundles.snmp4j-2.3.4_1.jar', |
1416 | + url = 'mvn:org.apache.servicemix.bundles:org.apache.servicemix.bundles.snmp4j:jar:2.3.4_1', | ||
777 | sha1 = '5134e0b60a6d88b26fe4dec03488efe4f2463e65', | 1417 | sha1 = '5134e0b60a6d88b26fe4dec03488efe4f2463e65', |
778 | - license = 'Apache2.0', | ||
779 | ) | 1418 | ) |
780 | 1419 | ||
781 | -maven_jar( | 1420 | +prebuilt_jar( |
782 | - name = 'jetty-websocket', | 1421 | + name = 'org.osgi.compendium', |
783 | - id = 'org.eclipse.jetty:jetty-websocket:8.1.18.v20150929', | 1422 | + binary_jar = ':org.osgi.compendium-4.3.1.jar', |
784 | - sha1 = '4a1610515aed4f02e7cb6ab0db564489d4d44d9f', | 1423 | + maven_coords = 'org.osgi:org.osgi.compendium:4.3.1', |
785 | - license = 'Apache2.0', | 1424 | + visibility = [ 'PUBLIC' ], |
786 | ) | 1425 | ) |
787 | 1426 | ||
788 | -maven_jar( | 1427 | +remote_file( |
789 | - name = 'jetty-util', | 1428 | + name = 'org.osgi.compendium-4.3.1.jar', |
790 | - id = 'org.eclipse.jetty:jetty-util:8.1.18.v20150929', | 1429 | + out = 'org.osgi.compendium-4.3.1.jar', |
791 | - sha1 = 'fb8fb3debf99a626c827535bf06451a337c6b085', | 1430 | + url = 'mvn:org.osgi:org.osgi.compendium:jar:4.3.1', |
792 | - license = 'Apache2.0', | 1431 | + sha1 = 'd1c9d7819de47d938a96ac2a3813bfd914684cf4', |
793 | ) | 1432 | ) |
794 | 1433 | ||
795 | -maven_jar( | 1434 | +prebuilt_jar( |
796 | - name = 'jsch', | 1435 | + name = 'osgi-core', |
797 | - id = 'com.jcraft:jsch:0.1.53', | 1436 | + binary_jar = ':org.osgi.core-4.3.1.jar', |
798 | - sha1 = '658b682d5c817b27ae795637dfec047c63d29935', | 1437 | + maven_coords = 'org.osgi:org.osgi.core:4.3.1', |
799 | - license = 'Apache2.0', | 1438 | + visibility = [ 'PUBLIC' ], |
1439 | +) | ||
1440 | + | ||
1441 | +remote_file( | ||
1442 | + name = 'org.osgi.core-4.3.1.jar', | ||
1443 | + out = 'org.osgi.core-4.3.1.jar', | ||
1444 | + url = 'mvn:org.osgi:org.osgi.core:jar:4.3.1', | ||
1445 | + sha1 = '5458ffe2ba049e76c29f2df2dc3ffccddf8b839e', | ||
1446 | +) | ||
1447 | + | ||
1448 | +prebuilt_jar( | ||
1449 | + name = 'reflectasm', | ||
1450 | + binary_jar = ':reflectasm-1.11.0.jar', | ||
1451 | + maven_coords = 'com.esotericsoftware:reflectasm:1.11.0', | ||
1452 | + visibility = [ 'PUBLIC' ], | ||
1453 | +) | ||
1454 | + | ||
1455 | +remote_file( | ||
1456 | + name = 'reflectasm-1.11.0.jar', | ||
1457 | + out = 'reflectasm-1.11.0.jar', | ||
1458 | + url = 'mvn:com.esotericsoftware:reflectasm:jar:1.11.0', | ||
1459 | + sha1 = 'f747d8b017a26bac575f8da14e8c1df6aecd3154', | ||
1460 | +) | ||
1461 | + | ||
1462 | +prebuilt_jar( | ||
1463 | + name = 'remotetea-oncrpc', | ||
1464 | + binary_jar = ':remotetea-oncrpc-1.1.3.jar', | ||
1465 | + maven_coords = 'org.acplt.remotetea:remotetea-oncrpc:1.1.3', | ||
1466 | + visibility = [ 'PUBLIC' ], | ||
1467 | +) | ||
1468 | + | ||
1469 | +remote_file( | ||
1470 | + name = 'remotetea-oncrpc-1.1.3.jar', | ||
1471 | + out = 'remotetea-oncrpc-1.1.3.jar', | ||
1472 | + url = 'mvn:org.acplt.remotetea:remotetea-oncrpc:jar:1.1.3', | ||
1473 | + sha1 = '2f7d94c5179b0267a882259a03a83eaa320cbcce', | ||
800 | ) | 1474 | ) |
801 | 1475 | ||
802 | -maven_jar( | 1476 | +prebuilt_jar( |
803 | name = 'rrd4j', | 1477 | name = 'rrd4j', |
804 | - id = 'org.rrd4j:rrd4j:2.2', | 1478 | + binary_jar = ':rrd4j-2.2.jar', |
1479 | + maven_coords = 'org.rrd4j:rrd4j:2.2', | ||
1480 | + visibility = [ 'PUBLIC' ], | ||
1481 | +) | ||
1482 | + | ||
1483 | +remote_file( | ||
1484 | + name = 'rrd4j-2.2.jar', | ||
1485 | + out = 'rrd4j-2.2.jar', | ||
1486 | + url = 'mvn:org.rrd4j:rrd4j:jar:2.2', | ||
805 | sha1 = 'e5aee992ece8c82291b77bef96cd1d11c1e0a009', | 1487 | sha1 = 'e5aee992ece8c82291b77bef96cd1d11c1e0a009', |
806 | - license = 'Apache2.0', | ||
807 | ) | 1488 | ) |
808 | 1489 | ||
809 | -maven_jar( | 1490 | +prebuilt_jar( |
810 | - name = 'metrics-influxdb', | 1491 | + name = 'servlet-api', |
811 | - id = 'com.izettle:metrics-influxdb:1.1.1', | 1492 | + binary_jar = ':servlet-api-2.5.jar', |
812 | - sha1 = 'a911d778c2f8607dd4e7a4cdb9b0cd97adcd0343', | 1493 | + maven_coords = 'javax.servlet:servlet-api:2.5', |
813 | - license = 'Apache2.0', | 1494 | + visibility = [ 'PUBLIC' ], |
814 | ) | 1495 | ) |
815 | 1496 | ||
816 | -maven_jar( | 1497 | +remote_file( |
817 | - name = 'influxdb-java', | 1498 | + name = 'servlet-api-2.5.jar', |
818 | - id = 'org.influxdb:influxdb-java:2.1', | 1499 | + out = 'servlet-api-2.5.jar', |
819 | - sha1 = 'd2fe39fb8db1d823e64fc7ea54b779e1cab917c7', | 1500 | + url = 'mvn:javax.servlet:servlet-api:jar:2.5', |
820 | - license = 'Apache2.0', | 1501 | + sha1 = '5959582d97d8b61f4d154ca9e495aafd16726e34', |
821 | ) | 1502 | ) |
822 | 1503 | ||
1504 | +prebuilt_jar( | ||
1505 | + name = 'slf4j-api', | ||
1506 | + binary_jar = ':slf4j-api-1.7.13.jar', | ||
1507 | + maven_coords = 'org.slf4j:slf4j-api:1.7.13', | ||
1508 | + visibility = [ 'PUBLIC' ], | ||
1509 | +) | ||
823 | 1510 | ||
824 | -maven_jar( | 1511 | +remote_file( |
825 | - name = 'gmetric4j', | 1512 | + name = 'slf4j-api-1.7.13.jar', |
826 | - id = 'info.ganglia.gmetric4j:gmetric4j:1.0.10', | 1513 | + out = 'slf4j-api-1.7.13.jar', |
827 | - sha1 = '3d62003123b586adb86cb028cc0f8a8c3a701d81', | 1514 | + url = 'mvn:org.slf4j:slf4j-api:jar:1.7.13', |
828 | - license = 'Apache2.0', | 1515 | + sha1 = '7fcf30c25b8f4a9379b9dad0d3f487b25272c026', |
829 | ) | 1516 | ) |
830 | 1517 | ||
831 | -maven_jar( | 1518 | +prebuilt_jar( |
832 | - name = 'metrics-ganglia', | 1519 | + name = 'slf4j-jdk14', |
833 | - id = 'io.dropwizard.metrics:metrics-ganglia:3.1.2', | 1520 | + binary_jar = ':slf4j-jdk14-1.7.13.jar', |
834 | - sha1 = '2a4e2fcd6436f9b1771f0f9b6bab445dddcf704f', | 1521 | + maven_coords = 'org.slf4j:slf4j-jdk14:1.7.13', |
835 | - license = 'Apache2.0', | 1522 | + visibility = [ 'PUBLIC' ], |
836 | ) | 1523 | ) |
837 | 1524 | ||
838 | -maven_jar( | 1525 | +remote_file( |
839 | - name = 'metrics-graphite', | 1526 | + name = 'slf4j-jdk14-1.7.13.jar', |
840 | - id = 'io.dropwizard.metrics:metrics-graphite:3.1.2', | 1527 | + out = 'slf4j-jdk14-1.7.13.jar', |
841 | - sha1 = '15a68399652c6123fe6e4c82ac4f0749e2eb6583', | 1528 | + url = 'mvn:org.slf4j:slf4j-jdk14:jar:1.7.13', |
842 | - license = 'Apache2.0', | 1529 | + sha1 = 'bcc4dd3bffd6bce845164140bdf18ce14e76b423', |
843 | ) | 1530 | ) |
844 | 1531 | ||
845 | -maven_jar( | 1532 | +prebuilt_jar( |
846 | - name = 'concurrent-trees', | 1533 | + name = 'typesafe-config', |
847 | - id = 'com.googlecode.concurrent-trees:concurrent-trees:2.4.0', | 1534 | + binary_jar = ':config-1.2.1.jar', |
848 | - sha1 = '2e505b78f9216abebbbdf1c3254bf9f4c565ae43', | 1535 | + maven_coords = 'com.typesafe:config:1.2.1', |
849 | - license = 'Apache2.0', | 1536 | + visibility = [ 'PUBLIC' ], |
850 | ) | 1537 | ) |
851 | 1538 | ||
852 | -# Openstack4j related jars | 1539 | +remote_file( |
853 | -maven_jar( | 1540 | + name = 'config-1.2.1.jar', |
854 | - name = 'openstack4j-core', | 1541 | + out = 'config-1.2.1.jar', |
855 | - id = 'org.pacesys:openstack4j-core:2.11', | 1542 | + url = 'mvn:com.typesafe:config:jar:1.2.1', |
856 | - sha1 = '583f508c55f5dceb90504a4a8a0590afb8a8a03a', | 1543 | + sha1 = 'f771f71fdae3df231bcd54d5ca2d57f0bf93f467', |
857 | - license = 'Apache2.0', | ||
858 | ) | 1544 | ) |
859 | 1545 | ||
860 | -maven_jar( | 1546 | +prebuilt_jar( |
861 | - name = 'openstack4j-http-connector', | 1547 | + name = 'validation-api', |
862 | - id = 'org.pacesys.openstack4j.connectors:openstack4j-http-connector:2.11', | 1548 | + binary_jar = ':validation-api-1.1.0.Final.jar', |
863 | - sha1 = 'a153800e114916b4125de2cdb743497c0f99aef5', | 1549 | + maven_coords = 'javax.validation:validation-api:1.1.0.Final', |
864 | - license = 'Apache2.0', | 1550 | + visibility = [ 'PUBLIC' ], |
865 | ) | 1551 | ) |
866 | 1552 | ||
867 | -maven_jar( | 1553 | +remote_file( |
868 | - name = 'openstack4j-httpclient', | 1554 | + name = 'validation-api-1.1.0.Final.jar', |
869 | - id = 'org.pacesys.openstack4j.connectors:openstack4j-httpclient:2.11', | 1555 | + out = 'validation-api-1.1.0.Final.jar', |
870 | - sha1 = 'd050e21295959a4ce2c07ca193ccbe28d8bfa3c1', | 1556 | + url = 'mvn:javax.validation:validation-api:jar:1.1.0.Final', |
871 | - license = 'Apache2.0', | 1557 | + sha1 = '8613ae82954779d518631e05daa73a6a954817d5', |
1558 | +) | ||
1559 | + | ||
1560 | +prebuilt_jar( | ||
1561 | + name = 'checkstyle', | ||
1562 | + binary_jar = ':checkstyle-6.11.2-all.jar', | ||
1563 | + visibility = [ 'PUBLIC' ], | ||
1564 | +) | ||
1565 | + | ||
1566 | +remote_file( | ||
1567 | + name = 'checkstyle-6.11.2-all.jar', | ||
1568 | + out = 'checkstyle-6.11.2-all.jar', | ||
1569 | + url = 'http://onlab.vicci.org/onos/third-party/checkstyle-6.11.2-all.jar', | ||
1570 | + sha1 = 'f504187b1743e73ffe72c2eede0ff57d45536b7d', | ||
1571 | +) | ||
1572 | + | ||
1573 | +prebuilt_jar( | ||
1574 | + name = 'bndlib', | ||
1575 | + binary_jar = ':biz.aQute.bndlib-3.1.0.jar', | ||
1576 | + maven_coords = 'biz.aQute.bnd:biz.aQute.bndlib:3.1.0', | ||
1577 | + visibility = [ 'PUBLIC' ], | ||
1578 | +) | ||
1579 | + | ||
1580 | +remote_file( | ||
1581 | + name = 'biz.aQute.bndlib-3.1.0.jar', | ||
1582 | + out = 'biz.aQute.bndlib-3.1.0.jar', | ||
1583 | + url = 'mvn:biz.aQute.bnd:biz.aQute.bndlib:jar:3.1.0', | ||
1584 | + sha1 = '8e45564ca80bf089276a35f916e8702e7b798cbb', | ||
1585 | +) | ||
1586 | + | ||
1587 | +prebuilt_jar( | ||
1588 | + name = 'org.apache.felix.scr.bnd', | ||
1589 | + binary_jar = ':org.apache.felix.scr.bnd-1.4.1-20160328.235003-2.jar', | ||
1590 | + visibility = [ 'PUBLIC' ], | ||
872 | ) | 1591 | ) |
873 | 1592 | ||
874 | -# These SNMP libraries don't have release versions, so we access them directly by snapshot id. The SNMP provider is due for a refactoring | 1593 | +remote_file( |
875 | -# overhaul to fix some of these bogus dependencies. | 1594 | + name = 'org.apache.felix.scr.bnd-1.4.1-20160328.235003-2.jar', |
1595 | + out = 'org.apache.felix.scr.bnd-1.4.1-20160328.235003-2.jar', | ||
1596 | + url = 'https://oss.sonatype.org/content/repositories/snapshots/org/onosproject/org.apache.felix.scr.bnd/1.4.1-SNAPSHOT/org.apache.felix.scr.bnd-1.4.1-20160328.235003-2.jar', | ||
1597 | + sha1 = '607cac6eaba5b0eb0787a343b83fe535c42c09aa', | ||
1598 | +) | ||
876 | 1599 | ||
877 | -maven_jar( | 1600 | +prebuilt_jar( |
878 | name = 'snmp-core', | 1601 | name = 'snmp-core', |
879 | - full_url = 'https://oss.sonatype.org/content/repositories/snapshots/com/btisystems/snmp-core/1.3-SNAPSHOT/snmp-core-1.3-20151110.124757-1', | 1602 | + binary_jar = ':snmp-core-1.3-20160121.161050-3.jar', |
880 | - id = 'com.btisystems:snmp-core:1.3-SNAPSHOT-20151110.124757-1', | 1603 | + visibility = [ 'PUBLIC' ], |
881 | - repository = 'https://oss.sonatype.org/content/repositories/snapshots', | 1604 | +) |
882 | - license = 'Apache2.0', | 1605 | + |
1606 | +remote_file( | ||
1607 | + name = 'snmp-core-1.3-20160121.161050-3.jar', | ||
1608 | + out = 'snmp-core-1.3-20160121.161050-3.jar', | ||
1609 | + url = 'https://oss.sonatype.org/content/repositories/snapshots/com/btisystems/snmp-core/1.3-SNAPSHOT/snmp-core-1.3-20160121.161050-3.jar', | ||
1610 | + sha1 = 'c2766c97b9c8c3a92070d1aa84740eff4ac23a1f', | ||
883 | ) | 1611 | ) |
884 | 1612 | ||
885 | -maven_jar( | 1613 | +prebuilt_jar( |
886 | name = 'bti7000', | 1614 | name = 'bti7000', |
887 | - id = 'com.btisystems.mibbler.mibs:bti7000:1.0-SNAPSHOT', | 1615 | + binary_jar = ':bti7000-1.0-20151221.113001-4.jar', |
888 | - repository = 'https://oss.sonatype.org/content/repositories/snapshots', | 1616 | + visibility = [ 'PUBLIC' ], |
889 | - full_url = 'https://oss.sonatype.org/content/repositories/snapshots/com/btisystems/mibbler/mibs/bti7000/1.0-SNAPSHOT/bti7000-1.0-20151221.113001-4', | 1617 | +) |
890 | - attach_source = False, | 1618 | + |
891 | - license = 'Apache2.0', | 1619 | +remote_file( |
1620 | + name = 'bti7000-1.0-20151221.113001-4.jar', | ||
1621 | + out = 'bti7000-1.0-20151221.113001-4.jar', | ||
1622 | + url = 'https://oss.sonatype.org/content/repositories/snapshots/com/btisystems/mibbler/mibs/bti7000/1.0-SNAPSHOT/bti7000-1.0-20151221.113001-4.jar', | ||
1623 | + sha1 = '61de9a88dfb966d5dc825e0164d901992ad6c33b', | ||
892 | ) | 1624 | ) |
893 | 1625 | ||
894 | -maven_jar( | 1626 | +prebuilt_jar( |
895 | name = 'mibs-net-snmp', | 1627 | name = 'mibs-net-snmp', |
896 | - id = 'com.btisystems.mibbler.mibs:net-snmp:1.0-SNAPSHOT', | 1628 | + binary_jar = ':net-snmp-1.0-20151221.112958-4.jar', |
897 | - repository = 'https://oss.sonatype.org/content/repositories/snapshots', | 1629 | + visibility = [ 'PUBLIC' ], |
898 | - full_url = 'https://oss.sonatype.org/content/repositories/snapshots/com/btisystems/mibbler/mibs/net-snmp/1.0-SNAPSHOT/net-snmp-1.0-20151221.112958-4', | 1630 | +) |
899 | - attach_source = False, | 1631 | + |
900 | - license = 'Apache2.0', | 1632 | +remote_file( |
1633 | + name = 'net-snmp-1.0-20151221.112958-4.jar', | ||
1634 | + out = 'net-snmp-1.0-20151221.112958-4.jar', | ||
1635 | + url = 'https://oss.sonatype.org/content/repositories/snapshots/com/btisystems/mibbler/mibs/net-snmp/1.0-SNAPSHOT/net-snmp-1.0-20151221.112958-4.jar', | ||
1636 | + sha1 = 'efa58eeee87642dc800835f85dcbcc6be7eee4a1', | ||
901 | ) | 1637 | ) |
902 | 1638 | ||
903 | -maven_jar( | 1639 | +prebuilt_jar( |
904 | name = 'mibs-rfc', | 1640 | name = 'mibs-rfc', |
905 | - id = 'com.btisystems.mibbler.mibs:rfc:1.0-SNAPSHOT', | 1641 | + binary_jar = ':rfc-1.0-20151221.113000-6.jar', |
906 | - repository = 'https://oss.sonatype.org/content/repositories/snapshots', | 1642 | + visibility = [ 'PUBLIC' ], |
907 | - full_url = 'https://oss.sonatype.org/content/repositories/snapshots/com/btisystems/mibbler/mibs/rfc/1.0-SNAPSHOT/rfc-1.0-20151221.113000-6', | ||
908 | - attach_source = False, | ||
909 | - license = 'Apache2.0', | ||
910 | ) | 1643 | ) |
911 | 1644 | ||
912 | -# ------ needed for OSGi Wrapper ------------------ | 1645 | +remote_file( |
913 | -#TODO should these live in osgiwrap or in lib | 1646 | + name = 'rfc-1.0-20151221.113000-6.jar', |
914 | -#FIXME replace with release version | 1647 | + out = 'rfc-1.0-20151221.113000-6.jar', |
915 | -maven_jar( | 1648 | + url = 'https://oss.sonatype.org/content/repositories/snapshots/com/btisystems/mibbler/mibs/rfc/1.0-SNAPSHOT/rfc-1.0-20151221.113000-6.jar', |
916 | - name = 'org.apache.felix.scr.bnd', | 1649 | + sha1 = '54c6af6895084000ae75569d05df5d1866b926b7', |
917 | - id = 'org.onosproject:org.apache.felix.scr.bnd:1.4.1-SNAPSHOT', | 1650 | +) |
918 | - repository = 'https://oss.sonatype.org/content/repositories/snapshots', | ||
919 | - full_url = 'https://oss.sonatype.org/content/repositories/snapshots/org/onosproject/org.apache.felix.scr.bnd/1.4.1-SNAPSHOT/org.apache.felix.scr.bnd-1.4.1-20160328.235003-2', | ||
920 | - attach_source = False, | ||
921 | - license = 'Apache2.0', | ||
922 | -) | ||
923 | -#TODO update this to org.apache.felix when changes are merged upstream | ||
924 | -# prebuilt_jar( | ||
925 | -# name = 'felix-bnd', | ||
926 | -# binary_jar = ':org.apache.felix.scr.bnd-jar', | ||
927 | -# ) | ||
928 | -# remote_file( | ||
929 | -# name = 'org.apache.felix.scr.bnd-jar', | ||
930 | -# out = 'org.apache.felix.scr.bnd-jar-1.4.1-SNAPSHOT.jar', | ||
931 | -# url = 'mvn:https://oss.sonatype.org/content/repositories/snapshots:org.onosproject:org.apache.felix.scr.bnd:jar:1.4.1-SNAPSHOT', | ||
932 | -# sha1 = '89b5161d60dfe4138046f13c789f17a6b89e823d', | ||
933 | -# ) | ||
934 | 1651 | ||
935 | prebuilt_jar( | 1652 | prebuilt_jar( |
936 | - name = 'bndlib', | 1653 | + name = 'openstack4j-core', |
937 | - binary_jar = ':biz.aQute.bnd-biz.aQute.bndlib-jar', | 1654 | + binary_jar = ':openstack4j-core-2.11.jar', |
938 | - visibility = [ 'PUBLIC' ] #:onlab-osgiwrap and :osgi-jar | 1655 | + maven_coords = 'org.pacesys:openstack4j-core:2.11', |
939 | -# source_jar | 1656 | + visibility = [ 'PUBLIC' ], |
940 | -# maven_coords | ||
941 | ) | 1657 | ) |
942 | 1658 | ||
943 | remote_file( | 1659 | remote_file( |
944 | - name = 'biz.aQute.bnd-biz.aQute.bndlib-jar', | 1660 | + name = 'openstack4j-core-2.11.jar', |
945 | - out = 'biz.aQute.bnd-biz.aQute.bndlib-jar-3.1.0.jar', | 1661 | + out = 'openstack4j-core-2.11.jar', |
946 | - url = 'mvn:biz.aQute.bnd:biz.aQute.bndlib:jar:3.1.0', | 1662 | + url = 'mvn:org.pacesys:openstack4j-core:jar:2.11', |
947 | - sha1 = '8e45564ca80bf089276a35f916e8702e7b798cbb', | 1663 | + sha1 = '583f508c55f5dceb90504a4a8a0590afb8a8a03a', |
948 | ) | 1664 | ) |
949 | 1665 | ||
950 | prebuilt_jar( | 1666 | prebuilt_jar( |
951 | - name = 'checkstyle', | 1667 | + name = 'openstack4j-http-connector', |
952 | - binary_jar = ':checkstyle-jar', | 1668 | + binary_jar = ':openstack4j-http-connector-2.11.jar', |
953 | - visibility = [ 'PUBLIC' ] | 1669 | + maven_coords = 'org.pacesys.openstack4j.connectors:openstack4j-http-connector:2.11', |
1670 | + visibility = [ 'PUBLIC' ], | ||
954 | ) | 1671 | ) |
955 | 1672 | ||
956 | -# TODO upgrade to newer version of checkstyle | ||
957 | -# remote_file( | ||
958 | -# name = 'checkstyle-jar', | ||
959 | -# out = 'checkstyle-6.17-all.jar', | ||
960 | -# url = 'http://onlab.vicci.org/onos/third-party/checkstyle-6.17-all.jar', | ||
961 | -# sha1 = '11a02d7b0374f8a82fbd76361a69756faa6aefa0' | ||
962 | -# ) | ||
963 | - | ||
964 | remote_file( | 1673 | remote_file( |
965 | - name = 'checkstyle-jar', | 1674 | + name = 'openstack4j-http-connector-2.11.jar', |
966 | - out = 'checkstyle-6.11.2-all.jar', | 1675 | + out = 'openstack4j-http-connector-2.11.jar', |
967 | - url = 'http://onlab.vicci.org/onos/third-party/checkstyle-6.11.2-all.jar', | 1676 | + url = 'mvn:org.pacesys.openstack4j.connectors:openstack4j-http-connector:jar:2.11', |
968 | - sha1 = 'f504187b1743e73ffe72c2eede0ff57d45536b7d' | 1677 | + sha1 = 'a153800e114916b4125de2cdb743497c0f99aef5', |
969 | ) | 1678 | ) |
970 | 1679 | ||
971 | -maven_jar( | 1680 | +prebuilt_jar( |
972 | - name = 'remotetea-oncrpc', | 1681 | + name = 'openstack4j-httpclient', |
973 | - id = 'org.acplt.remotetea:remotetea-oncrpc:1.1.3', | 1682 | + binary_jar = ':openstack4j-httpclient-2.11.jar', |
974 | - sha1 = '2f7d94c5179b0267a882259a03a83eaa320cbcce', | 1683 | + maven_coords = 'org.pacesys.openstack4j.connectors:openstack4j-httpclient:2.11', |
975 | - license = 'Apache2.0', | 1684 | + visibility = [ 'PUBLIC' ], |
1685 | +) | ||
1686 | + | ||
1687 | +remote_file( | ||
1688 | + name = 'openstack4j-httpclient-2.11.jar', | ||
1689 | + out = 'openstack4j-httpclient-2.11.jar', | ||
1690 | + url = 'mvn:org.pacesys.openstack4j.connectors:openstack4j-httpclient:jar:2.11', | ||
1691 | + sha1 = 'd050e21295959a4ce2c07ca193ccbe28d8bfa3c1', | ||
976 | ) | 1692 | ) |
1693 | + | ... | ... |
lib/deps.json
0 → 100644
1 | +{ | ||
2 | + "libraries": { | ||
3 | + "COMPILE": [ | ||
4 | + "joda-time", | ||
5 | + "commons-configuration", | ||
6 | + "commons-logging", | ||
7 | + "commons-collections", | ||
8 | + "commons-lang", | ||
9 | + "commons-lang3", | ||
10 | + "commons-io", | ||
11 | + "commons-pool", | ||
12 | + "objenesis", | ||
13 | + "guava", | ||
14 | + "netty", | ||
15 | + "netty-common", | ||
16 | + "minimal-json", | ||
17 | + "kryo", | ||
18 | + "reflectasm", | ||
19 | + "asm", | ||
20 | + "minlog", | ||
21 | + "metrics-core", | ||
22 | + "metrics-json", | ||
23 | + "slf4j-api", | ||
24 | + "osgi-core", | ||
25 | + "org.osgi.compendium", | ||
26 | + "org.apache.felix.scr.annotations", | ||
27 | + "org.apache.felix.scr", | ||
28 | + "jackson-annotations", | ||
29 | + "jackson-core", | ||
30 | + "jackson-databind", | ||
31 | + "org.apache.karaf.features.core", | ||
32 | + "org.apache.karaf.system.core", | ||
33 | + { "name": "jsr305", "compile_only": true } | ||
34 | + ], | ||
35 | + "CORE_DEPS": [ | ||
36 | + ":COMPILE", | ||
37 | + "//core/api:onos-api", | ||
38 | + "//utils/misc:onlab-misc", | ||
39 | + "//utils/osgi:onlab-osgi" | ||
40 | + ], | ||
41 | + "TEST": [ | ||
42 | + "junit", | ||
43 | + "easymock", | ||
44 | + "hamcrest-core", | ||
45 | + "hamcrest-library", | ||
46 | + "hamcrest-all", | ||
47 | + "guava-testlib", | ||
48 | + "//utils/junit:onlab-junit" | ||
49 | + ], | ||
50 | + "TEST_ADAPTERS": [ | ||
51 | + ":TEST", | ||
52 | + "//core/common:onos-core-common", | ||
53 | + "//core/api:onos-api-tests", | ||
54 | + "//core/common:onos-core-common-tests" | ||
55 | + ], | ||
56 | + "TEST_REST": [ | ||
57 | + ":TEST_ADAPTERS", | ||
58 | + "jersey-client", | ||
59 | + "jersey-server", | ||
60 | + "jersey-common", | ||
61 | + "jersey-test-framework-core", | ||
62 | + "jersey-test-framework-grizzly2", | ||
63 | + "jersey-guava", | ||
64 | + "hk2-api", | ||
65 | + "hk2-locator", | ||
66 | + "hk2-utils", | ||
67 | + "javax.inject", | ||
68 | + "hk2-osgi-resource-locator", | ||
69 | + "jersey-container-grizzly2-http", | ||
70 | + "grizzly-http-server", | ||
71 | + "grizzly-framework", | ||
72 | + "grizzly-http", | ||
73 | + "javax.annotation-api", | ||
74 | + "validation-api", | ||
75 | + "//core/common:onos-core-common", | ||
76 | + "//core/api:onos-api-tests", | ||
77 | + "//core/common:onos-core-common-tests", | ||
78 | + "//utils/osgi:onlab-osgi-tests" | ||
79 | + ] | ||
80 | + }, | ||
81 | + | ||
82 | + "artifacts": { | ||
83 | + "gmetric4j": "mvn:info.ganglia.gmetric4j:gmetric4j:1.0.10", | ||
84 | + "aopalliance-repackaged": "mvn:org.glassfish.hk2.external:aopalliance-repackaged:2.4.0-b34", | ||
85 | + "asm": "mvn:org.ow2.asm:asm:4.2", | ||
86 | + "atomix": "mvn:io.atomix:atomix:1.0.0-rc3", | ||
87 | + "atomix-collections": "mvn:io.atomix:atomix-collections:1.0.0-rc3", | ||
88 | + "atomix-messaging": "mvn:io.atomix:atomix-messaging:1.0.0-rc3", | ||
89 | + "atomix-resource": "mvn:io.atomix:atomix-resource:1.0.0-rc3", | ||
90 | + "atomix-resource-manager": "mvn:io.atomix:atomix-resource-manager:1.0.0-rc3", | ||
91 | + "atomix-variables": "mvn:io.atomix:atomix-variables:1.0.0-rc3", | ||
92 | + "catalyst-buffer": "mvn:io.atomix.catalyst:catalyst-buffer:1.0.4", | ||
93 | + "catalyst-common": "mvn:io.atomix.catalyst:catalyst-common:1.0.4", | ||
94 | + "catalyst-local": "mvn:io.atomix.catalyst:catalyst-local:1.0.4", | ||
95 | + "catalyst-serializer": "mvn:io.atomix.catalyst:catalyst-serializer:1.0.4", | ||
96 | + "catalyst-transport": "mvn:io.atomix.catalyst:catalyst-transport:1.0.4", | ||
97 | + "commons-collections": "mvn:commons-collections:commons-collections:3.2.2", | ||
98 | + "commons-configuration": "mvn:commons-configuration:commons-configuration:1.10", | ||
99 | + "commons-io": "mvn:commons-io:commons-io:2.4", | ||
100 | + "commons-lang": "mvn:commons-lang:commons-lang:2.6", | ||
101 | + "commons-lang3": "mvn:org.apache.commons:commons-lang3:3.4", | ||
102 | + "commons-logging": "mvn:commons-logging:commons-logging:1.1.1", | ||
103 | + "commons-math3": "mvn:org.apache.commons:commons-math3:3.2", | ||
104 | + "commons-pool": "mvn:commons-pool:commons-pool:1.6", | ||
105 | + "concurrent-trees": "mvn:com.googlecode.concurrent-trees:concurrent-trees:2.4.0", | ||
106 | + "copycat-api": "mvn:org.onosproject:copycat-api:0.5.1.onos", | ||
107 | + "copycat-client": "mvn:io.atomix.copycat:copycat-client:1.0.0-rc4", | ||
108 | + "copycat-core": "mvn:org.onosproject:copycat-core:0.5.1.onos", | ||
109 | + "copycat-event-log": "mvn:org.onosproject:copycat-event-log:0.5.1.onos", | ||
110 | + "copycat-leader-election": "mvn:org.onosproject:copycat-leader-election:0.5.1.onos", | ||
111 | + "copycat-protocol": "mvn:io.atomix.copycat:copycat-protocol:1.0.0-rc4", | ||
112 | + "copycat-server": "mvn:io.atomix.copycat:copycat-server:1.0.0-rc4", | ||
113 | + "copycat-state-log": "mvn:org.onosproject:copycat-state-log:0.5.1.onos", | ||
114 | + "copycat-state-machine": "mvn:org.onosproject:copycat-state-machine:0.5.1.onos", | ||
115 | + "easymock": "mvn:org.easymock:easymock:3.4", | ||
116 | + "error_prone_annotations": "mvn:com.google.errorprone:error_prone_annotations:2.0.2", | ||
117 | + "ganymed-ssh2": "mvn:ch.ethz.ganymed:ganymed-ssh2:262", | ||
118 | + "grizzly-framework": "mvn:org.glassfish.grizzly:grizzly-framework:2.3.23", | ||
119 | + "grizzly-http": "mvn:org.glassfish.grizzly:grizzly-http:2.3.23", | ||
120 | + "grizzly-http-server": "mvn:org.glassfish.grizzly:grizzly-http-server:2.3.23", | ||
121 | + "guava": "mvn:com.google.guava:guava:19.0", | ||
122 | + "guava-testlib": "mvn:com.google.guava:guava-testlib:19.0", | ||
123 | + "hamcrest-all": "mvn:org.hamcrest:hamcrest-all:1.3", | ||
124 | + "hamcrest-core": "mvn:org.hamcrest:hamcrest-core:1.3", | ||
125 | + "hamcrest-library": "mvn:org.hamcrest:hamcrest-library:1.3", | ||
126 | + "hk2-api": "mvn:org.glassfish.hk2:hk2-api:2.4.0-b34", | ||
127 | + "hk2-locator": "mvn:org.glassfish.hk2:hk2-locator:2.4.0-b34", | ||
128 | + "hk2-osgi-resource-locator": "mvn:org.glassfish.hk2:osgi-resource-locator:1.0.1", | ||
129 | + "hk2-utils": "mvn:org.glassfish.hk2:hk2-utils:2.4.0-b34", | ||
130 | + "httpclient-osgi": "mvn:org.apache.httpcomponents:httpclient-osgi:4.5.1", | ||
131 | + "httpcore-osgi": "mvn:org.apache.httpcomponents:httpcore-osgi:4.4.4", | ||
132 | + "influxdb-java": "mvn:org.influxdb:influxdb-java:2.1", | ||
133 | + "jackson-annotations": "mvn:com.fasterxml.jackson.core:jackson-annotations:2.7.0", | ||
134 | + "jackson-core": "mvn:com.fasterxml.jackson.core:jackson-core:2.7.0", | ||
135 | + "jackson-databind": "mvn:com.fasterxml.jackson.core:jackson-databind:2.7.0", | ||
136 | + "javax.annotation-api": "mvn:javax.annotation:javax.annotation-api:1.2", | ||
137 | + "javax.inject": "mvn:org.glassfish.hk2.external:javax.inject:2.4.0-b34", | ||
138 | + "javax.ws.rs-api": "mvn:javax.ws.rs:javax.ws.rs-api:2.0.1", | ||
139 | + "jersey-client": "mvn:org.glassfish.jersey.core:jersey-client:2.22.2", | ||
140 | + "jersey-common": "mvn:org.glassfish.jersey.core:jersey-common:2.22.2", | ||
141 | + "jersey-container-grizzly2-http": "mvn:org.glassfish.jersey.containers:jersey-container-grizzly2-http:2.22.2", | ||
142 | + "jersey-guava": "mvn:org.glassfish.jersey.bundles.repackaged:jersey-guava:2.22.2", | ||
143 | + "jersey-media-multipart": "mvn:org.glassfish.jersey.media:jersey-media-multipart:2.22.2", | ||
144 | + "jersey-server": "mvn:org.glassfish.jersey.core:jersey-server:2.22.2", | ||
145 | + "jersey-test-framework-core": "mvn:org.glassfish.jersey.test-framework:jersey-test-framework-core:2.22.2", | ||
146 | + "jersey-test-framework-grizzly2": "mvn:org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-grizzly2:2.22.2", | ||
147 | + "jetty-util": "mvn:org.eclipse.jetty:jetty-util:8.1.18.v20150929", | ||
148 | + "jetty-websocket": "mvn:org.eclipse.jetty:jetty-websocket:8.1.18.v20150929", | ||
149 | + "joda-time": "mvn:joda-time:joda-time:2.9", | ||
150 | + "jsch": "mvn:com.jcraft:jsch:0.1.53", | ||
151 | + "jsr305": "mvn:com.google.code.findbugs:jsr305:3.0.1", | ||
152 | + "junit": "mvn:junit:junit:4.12", | ||
153 | + "kryo": "mvn:com.esotericsoftware:kryo:3.0.0", | ||
154 | + "mapdb": "mvn:org.mapdb:mapdb:1.0.8", | ||
155 | + "metrics-core": "mvn:io.dropwizard.metrics:metrics-core:3.1.0", | ||
156 | + "metrics-ganglia": "mvn:io.dropwizard.metrics:metrics-ganglia:3.1.2", | ||
157 | + "metrics-graphite": "mvn:io.dropwizard.metrics:metrics-graphite:3.1.2", | ||
158 | + "metrics-influxdb": "mvn:com.izettle:metrics-influxdb:1.1.1", | ||
159 | + "metrics-json": "mvn:io.dropwizard.metrics:metrics-json:3.1.0", | ||
160 | + "minimal-json": "mvn:com.eclipsesource.minimal-json:minimal-json:0.9.4", | ||
161 | + "minlog": "mvn:com.esotericsoftware:minlog:1.3.0", | ||
162 | + "netty": "mvn:io.netty:netty:3.10.5.Final", | ||
163 | + "netty-buffer": "mvn:io.netty:netty-buffer:4.0.33.Final", | ||
164 | + "netty-codec": "mvn:io.netty:netty-codec:4.0.33.Final", | ||
165 | + "netty-common": "mvn:io.netty:netty-common:4.0.33.Final", | ||
166 | + "netty-handler": "mvn:io.netty:netty-handler:4.0.33.Final", | ||
167 | + "netty-transport": "mvn:io.netty:netty-transport:4.0.33.Final", | ||
168 | + "netty-transport-native-epoll": "mvn:io.netty:netty-transport-native-epoll:4.0.33.Final", | ||
169 | + "objenesis": "mvn:org.objenesis:objenesis:2.2", | ||
170 | + "openflowj": "mvn:org.onosproject:openflowj:0.9.2.onos", | ||
171 | + "org.apache.felix.scr": "mvn:org.apache.felix:org.apache.felix.scr:1.8.2", | ||
172 | + "org.apache.felix.scr.annotations": "mvn:org.apache.felix:org.apache.felix.scr.annotations:1.9.12", | ||
173 | + "org.apache.karaf.features.core": "mvn:org.apache.karaf.features:org.apache.karaf.features.core:3.0.5", | ||
174 | + "org.apache.karaf.shell.console": "mvn:org.apache.karaf.shell:org.apache.karaf.shell.console:3.0.5", | ||
175 | + "org.apache.karaf.system.core": "mvn:org.apache.karaf.system:org.apache.karaf.system.core:3.0.5", | ||
176 | + "org.apache.servicemix.bundles.snmp4j": "mvn:org.apache.servicemix.bundles:org.apache.servicemix.bundles.snmp4j:2.3.4_1", | ||
177 | + "org.osgi.compendium": "mvn:org.osgi:org.osgi.compendium:4.3.1", | ||
178 | + "osgi-core": "mvn:org.osgi:org.osgi.core:4.3.1", | ||
179 | + "reflectasm": "mvn:com.esotericsoftware:reflectasm:1.11.0", | ||
180 | + "remotetea-oncrpc": "mvn:org.acplt.remotetea:remotetea-oncrpc:1.1.3", | ||
181 | + "rrd4j": "mvn:org.rrd4j:rrd4j:2.2", | ||
182 | + "servlet-api": "mvn:javax.servlet:servlet-api:2.5", | ||
183 | + "slf4j-api": "mvn:org.slf4j:slf4j-api:1.7.13", | ||
184 | + "slf4j-jdk14": "mvn:org.slf4j:slf4j-jdk14:1.7.13", | ||
185 | + "typesafe-config": "mvn:com.typesafe:config:1.2.1", | ||
186 | + "validation-api": "mvn:javax.validation:validation-api:1.1.0.Final", | ||
187 | + "checkstyle": "http://onlab.vicci.org/onos/third-party/checkstyle-6.11.2-all.jar", | ||
188 | + "bndlib": "mvn:biz.aQute.bnd:biz.aQute.bndlib:jar:3.1.0", | ||
189 | + "org.apache.felix.scr.bnd": { | ||
190 | + "uri": "mvn:org.onosproject:org.apache.felix.scr.bnd:1.4.1-SNAPSHOT", | ||
191 | + "repo": "https://oss.sonatype.org/content/repositories/snapshots" | ||
192 | + }, | ||
193 | + "snmp-core": { | ||
194 | + "uri": "mvn:com.btisystems:snmp-core:1.3-SNAPSHOT", | ||
195 | + "repo": "https://oss.sonatype.org/content/repositories/snapshots" | ||
196 | + }, | ||
197 | + "bti7000": { | ||
198 | + "uri": "mvn:com.btisystems.mibbler.mibs:bti7000:1.0-SNAPSHOT", | ||
199 | + "repo": "https://oss.sonatype.org/content/repositories/snapshots" | ||
200 | + }, | ||
201 | + "mibs-net-snmp": { | ||
202 | + "uri": "mvn:com.btisystems.mibbler.mibs:net-snmp:1.0-SNAPSHOT", | ||
203 | + "repo": "https://oss.sonatype.org/content/repositories/snapshots" | ||
204 | + }, | ||
205 | + "mibs-rfc": { | ||
206 | + "uri": "mvn:com.btisystems.mibbler.mibs:rfc:1.0-SNAPSHOT", | ||
207 | + "repo": "https://oss.sonatype.org/content/repositories/snapshots" | ||
208 | + }, | ||
209 | + // Openstack4j related jars | ||
210 | + "openstack4j-core": "mvn:org.pacesys:openstack4j-core:2.11", | ||
211 | + "openstack4j-http-connector": "mvn:org.pacesys.openstack4j.connectors:openstack4j-http-connector:2.11", | ||
212 | + "openstack4j-httpclient": "mvn:org.pacesys.openstack4j.connectors:openstack4j-httpclient:2.11" | ||
213 | + } | ||
214 | +} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment