@@ -23,38 +23,34 @@ esplugin {
23
23
}
24
24
25
25
versions << [
26
- ' azure' : ' 12.9.0' ,
27
- ' azureCore' : ' 1.10.0' ,
28
- ' azureCoreHttpNetty' : ' 1.6.3' ,
26
+ ' azure' : ' 12.14.0' ,
27
+ ' azureCore' : ' 1.21.0' ,
28
+ ' azureCoreHttpNetty' : ' 1.11.1' ,
29
+ ' azureAvro' : ' 12.1.1' ,
29
30
30
31
' jakartaActivation' : ' 1.2.1' ,
31
32
' jakartaXMLBind' : ' 2.3.2' ,
32
33
' stax2API' : ' 4.2' ,
33
- ' woodstox' : ' 6.0.2 ' ,
34
+ ' woodstox' : ' 6.2.6 ' ,
34
35
35
- ' reactorNetty' : ' 0.9.12.RELEASE ' ,
36
- ' reactorCore' : ' 3.3.10.RELEASE ' ,
36
+ ' reactorNetty' : ' 1.0.12 ' ,
37
+ ' reactorCore' : ' 3.4.11 ' ,
37
38
' reactiveStreams' : ' 1.0.3' ,
38
39
]
39
40
40
41
dependencies {
41
- api project(path : ' azure-storage-blob' , configuration : ' shadow' )
42
- if (isEclipse) {
43
- /*
44
- * Eclipse can't pick up the shadow dependency so we point it at *something*
45
- * so it can compile things.
46
- */
47
- api project(path : ' azure-storage-blob' )
48
- }
49
42
api " com.azure:azure-storage-common:${ versions.azure} "
43
+ api " com.azure:azure-storage-blob:${ versions.azure} "
50
44
api " com.azure:azure-core-http-netty:${ versions.azureCoreHttpNetty} "
51
45
api " com.azure:azure-core:${ versions.azureCore} "
46
+ api " com.azure:azure-storage-internal-avro:${ versions.azureAvro} "
52
47
53
48
// jackson
54
49
api " com.fasterxml.jackson.core:jackson-core:${ versions.jackson} "
55
50
api " com.fasterxml.jackson.core:jackson-databind:${ versions.jackson} "
56
51
api " com.fasterxml.jackson.core:jackson-annotations:${ versions.jackson} "
57
52
api " com.fasterxml.jackson.core:jackson-databind:${ versions.jackson} "
53
+ api " com.fasterxml.jackson:jackson-bom:${ versions.jackson} "
58
54
59
55
// jackson xml
60
56
api " com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${ versions.jackson} "
@@ -67,18 +63,23 @@ dependencies {
67
63
68
64
// netty
69
65
api " io.netty:netty-buffer:${ versions.netty} "
66
+ api " io.netty:netty-codec:${ versions.netty} "
67
+ api " io.netty:netty-codec-dns:${ versions.netty} "
70
68
api " io.netty:netty-codec-http:${ versions.netty} "
71
69
api " io.netty:netty-codec-http2:${ versions.netty} "
72
70
api " io.netty:netty-codec-socks:${ versions.netty} "
73
- api " io.netty:netty-codec:${ versions.netty} "
74
71
api " io.netty:netty-common:${ versions.netty} "
75
- api " io.netty:netty-handler-proxy:${ versions.netty} "
76
72
api " io.netty:netty-handler:${ versions.netty} "
73
+ api " io.netty:netty-handler-proxy:${ versions.netty} "
77
74
api " io.netty:netty-resolver:${ versions.netty} "
75
+ api " io.netty:netty-resolver-dns:${ versions.netty} "
78
76
api " io.netty:netty-transport:${ versions.netty} "
77
+ api " io.netty:netty-transport-native-unix-common:${ versions.netty} "
79
78
80
79
// reactor
81
80
api " io.projectreactor.netty:reactor-netty:${ versions.reactorNetty} "
81
+ api " io.projectreactor.netty:reactor-netty-core:${ versions.reactorNetty} "
82
+ api " io.projectreactor.netty:reactor-netty-http:${ versions.reactorNetty} "
82
83
api " io.projectreactor:reactor-core:${ versions.reactorCore} "
83
84
api " org.reactivestreams:reactive-streams:${ versions.reactiveStreams} "
84
85
@@ -108,6 +109,7 @@ tasks.named("dependencyLicenses").configure {
108
109
mapping from : / netty-.*/ , to : ' netty'
109
110
mapping from : / jaxb-.*/ , to : ' jaxb'
110
111
mapping from : / stax-.*/ , to : ' stax'
112
+ mapping from : / reactor-netty-.*/ , to : ' reactor-netty'
111
113
mapping from : / reactive-streams.*/ , to : ' reactive-streams'
112
114
}
113
115
@@ -254,14 +256,25 @@ tasks.named("thirdPartyAudit").configure {
254
256
// it uses NIO
255
257
' io.netty.channel.kqueue.KQueue' ,
256
258
' io.netty.channel.kqueue.KQueueDatagramChannel' ,
259
+ ' io.netty.channel.kqueue.KQueueDomainDatagramChannel' ,
260
+ ' io.netty.channel.kqueue.KQueueDomainSocketChannel' ,
257
261
' io.netty.channel.kqueue.KQueueEventLoopGroup' ,
262
+ ' io.netty.channel.kqueue.KQueueServerDomainSocketChannel' ,
258
263
' io.netty.channel.kqueue.KQueueServerSocketChannel' ,
259
264
' io.netty.channel.kqueue.KQueueSocketChannel' ,
260
265
' io.netty.channel.epoll.Epoll' ,
261
266
' io.netty.channel.epoll.EpollDatagramChannel' ,
267
+ ' io.netty.channel.epoll.EpollDomainDatagramChannel' ,
268
+ ' io.netty.channel.epoll.EpollDomainSocketChannel' ,
262
269
' io.netty.channel.epoll.EpollEventLoopGroup' ,
270
+ ' io.netty.channel.epoll.EpollServerDomainSocketChannel' ,
263
271
' io.netty.channel.epoll.EpollServerSocketChannel' ,
264
272
' io.netty.channel.epoll.EpollSocketChannel' ,
273
+ ' io.netty.incubator.channel.uring.IOUring' ,
274
+ ' io.netty.incubator.channel.uring.IOUringDatagramChannel' ,
275
+ ' io.netty.incubator.channel.uring.IOUringEventLoopGroup' ,
276
+ ' io.netty.incubator.channel.uring.IOUringServerSocketChannel' ,
277
+ ' io.netty.incubator.channel.uring.IOUringSocketChannel' ,
265
278
266
279
// from reactor.netty.http.server.HttpServer (reactor-netty)
267
280
' io.netty.handler.codec.haproxy.HAProxyMessage' ,
@@ -271,13 +284,11 @@ tasks.named("thirdPartyAudit").configure {
271
284
' org.osgi.framework.BundleActivator' ,
272
285
' org.osgi.framework.BundleContext' ,
273
286
274
- // from com.ctc.wstx.shaded.msv_core.driver.textui.Driver (woodstox-core)
275
- ' com.sun.org.apache.xml.internal.resolver.Catalog' ,
276
- ' com.sun.org.apache.xml.internal.resolver.tools.CatalogResolver' ,
277
-
278
287
' org.slf4j.impl.StaticLoggerBinder' ,
279
288
' org.slf4j.impl.StaticMDCBinder' ,
280
289
' org.slf4j.impl.StaticMarkerBinder' ,
290
+
291
+ ' com.ctc.wstx.shaded.msv_core.driver.textui.Driver' ,
281
292
)
282
293
283
294
ignoreViolations(
@@ -303,11 +314,7 @@ tasks.named("thirdPartyAudit").configure {
303
314
' javax.activation.MailcapCommandMap' ,
304
315
' javax.activation.MimetypesFileTypeMap' ,
305
316
306
- ' reactor.core.publisher.MultiProducerRingBuffer' ,
307
- ' reactor.core.publisher.RingBufferFields' ,
308
317
' reactor.core.publisher.Traces$SharedSecretsCallSiteSupplierFactory$TracingException' ,
309
- ' reactor.core.publisher.UnsafeSequence' ,
310
- ' reactor.core.publisher.UnsafeSupport'
311
318
)
312
319
}
313
320
boolean useFixture = false
0 commit comments