netty-all-4.1.86.Final.pom 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 2012 The Netty Project
  4. ~
  5. ~ The Netty Project licenses this file to you under the Apache License,
  6. ~ version 2.0 (the "License"); you may not use this file except in compliance
  7. ~ with the License. You may obtain a copy of the License at:
  8. ~
  9. ~ https://www.apache.org/licenses/LICENSE-2.0
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  13. ~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  14. ~ License for the specific language governing permissions and limitations
  15. ~ under the License.
  16. -->
  17. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  18. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  19. <modelVersion>4.0.0</modelVersion>
  20. <groupId>io.netty</groupId>
  21. <artifactId>netty-all</artifactId>
  22. <version>4.1.86.Final</version>
  23. <name>Netty/All-in-One</name>
  24. <description>Netty is an asynchronous event-driven network application framework for
  25. rapid development of maintainable high performance protocol servers and
  26. clients.</description>
  27. <url>https://netty.io/netty-all/</url>
  28. <licenses>
  29. <license>
  30. <name>Apache License, Version 2.0</name>
  31. <url>https://www.apache.org/licenses/LICENSE-2.0</url>
  32. </license>
  33. </licenses>
  34. <developers>
  35. <developer>
  36. <id>netty.io</id>
  37. <name>The Netty Project Contributors</name>
  38. <email>netty@googlegroups.com</email>
  39. <url>https://netty.io/</url>
  40. <organization>The Netty Project</organization>
  41. <organizationUrl>https://netty.io/</organizationUrl>
  42. </developer>
  43. </developers>
  44. <scm>
  45. <connection>scm:git:git://github.com/netty/netty.git/netty-all</connection>
  46. <developerConnection>scm:git:ssh://git@github.com/netty/netty.git/netty-all</developerConnection>
  47. <tag>netty-4.1.86.Final</tag>
  48. <url>https://github.com/netty/netty/netty-all</url>
  49. </scm>
  50. <dependencies>
  51. <dependency>
  52. <groupId>io.netty</groupId>
  53. <artifactId>netty-buffer</artifactId>
  54. <version>4.1.86.Final</version>
  55. <scope>compile</scope>
  56. <exclusions>
  57. <exclusion>
  58. <groupId>io.netty</groupId>
  59. <artifactId>netty-common</artifactId>
  60. </exclusion>
  61. </exclusions>
  62. <optional>false</optional>
  63. </dependency>
  64. <dependency>
  65. <groupId>io.netty</groupId>
  66. <artifactId>netty-codec</artifactId>
  67. <version>4.1.86.Final</version>
  68. <scope>compile</scope>
  69. <exclusions>
  70. <exclusion>
  71. <groupId>io.netty</groupId>
  72. <artifactId>netty-common</artifactId>
  73. </exclusion>
  74. <exclusion>
  75. <groupId>io.netty</groupId>
  76. <artifactId>netty-buffer</artifactId>
  77. </exclusion>
  78. <exclusion>
  79. <groupId>io.netty</groupId>
  80. <artifactId>netty-transport</artifactId>
  81. </exclusion>
  82. <exclusion>
  83. <groupId>com.google.protobuf</groupId>
  84. <artifactId>protobuf-java</artifactId>
  85. </exclusion>
  86. <exclusion>
  87. <groupId>com.google.protobuf.nano</groupId>
  88. <artifactId>protobuf-javanano</artifactId>
  89. </exclusion>
  90. <exclusion>
  91. <groupId>org.jboss.marshalling</groupId>
  92. <artifactId>jboss-marshalling</artifactId>
  93. </exclusion>
  94. <exclusion>
  95. <groupId>com.jcraft</groupId>
  96. <artifactId>jzlib</artifactId>
  97. </exclusion>
  98. <exclusion>
  99. <groupId>com.ning</groupId>
  100. <artifactId>compress-lzf</artifactId>
  101. </exclusion>
  102. <exclusion>
  103. <groupId>net.jpountz.lz4</groupId>
  104. <artifactId>lz4</artifactId>
  105. </exclusion>
  106. <exclusion>
  107. <groupId>com.github.jponge</groupId>
  108. <artifactId>lzma-java</artifactId>
  109. </exclusion>
  110. <exclusion>
  111. <groupId>com.github.luben</groupId>
  112. <artifactId>zstd-jni</artifactId>
  113. </exclusion>
  114. <exclusion>
  115. <groupId>com.aayushatharva.brotli4j</groupId>
  116. <artifactId>brotli4j</artifactId>
  117. </exclusion>
  118. <exclusion>
  119. <groupId>com.aayushatharva.brotli4j</groupId>
  120. <artifactId>native-linux-x86_64</artifactId>
  121. </exclusion>
  122. <exclusion>
  123. <groupId>com.aayushatharva.brotli4j</groupId>
  124. <artifactId>native-osx-x86_64</artifactId>
  125. </exclusion>
  126. <exclusion>
  127. <groupId>com.aayushatharva.brotli4j</groupId>
  128. <artifactId>native-windows-x86_64</artifactId>
  129. </exclusion>
  130. </exclusions>
  131. <optional>false</optional>
  132. </dependency>
  133. <dependency>
  134. <groupId>io.netty</groupId>
  135. <artifactId>netty-codec-dns</artifactId>
  136. <version>4.1.86.Final</version>
  137. <scope>compile</scope>
  138. <exclusions>
  139. <exclusion>
  140. <groupId>io.netty</groupId>
  141. <artifactId>netty-common</artifactId>
  142. </exclusion>
  143. <exclusion>
  144. <groupId>io.netty</groupId>
  145. <artifactId>netty-buffer</artifactId>
  146. </exclusion>
  147. <exclusion>
  148. <groupId>io.netty</groupId>
  149. <artifactId>netty-transport</artifactId>
  150. </exclusion>
  151. <exclusion>
  152. <groupId>io.netty</groupId>
  153. <artifactId>netty-codec</artifactId>
  154. </exclusion>
  155. </exclusions>
  156. <optional>false</optional>
  157. </dependency>
  158. <dependency>
  159. <groupId>io.netty</groupId>
  160. <artifactId>netty-codec-haproxy</artifactId>
  161. <version>4.1.86.Final</version>
  162. <scope>compile</scope>
  163. <exclusions>
  164. <exclusion>
  165. <groupId>io.netty</groupId>
  166. <artifactId>netty-buffer</artifactId>
  167. </exclusion>
  168. <exclusion>
  169. <groupId>io.netty</groupId>
  170. <artifactId>netty-transport</artifactId>
  171. </exclusion>
  172. <exclusion>
  173. <groupId>io.netty</groupId>
  174. <artifactId>netty-codec</artifactId>
  175. </exclusion>
  176. </exclusions>
  177. <optional>false</optional>
  178. </dependency>
  179. <dependency>
  180. <groupId>io.netty</groupId>
  181. <artifactId>netty-codec-http</artifactId>
  182. <version>4.1.86.Final</version>
  183. <scope>compile</scope>
  184. <exclusions>
  185. <exclusion>
  186. <groupId>io.netty</groupId>
  187. <artifactId>netty-common</artifactId>
  188. </exclusion>
  189. <exclusion>
  190. <groupId>io.netty</groupId>
  191. <artifactId>netty-buffer</artifactId>
  192. </exclusion>
  193. <exclusion>
  194. <groupId>io.netty</groupId>
  195. <artifactId>netty-transport</artifactId>
  196. </exclusion>
  197. <exclusion>
  198. <groupId>io.netty</groupId>
  199. <artifactId>netty-codec</artifactId>
  200. </exclusion>
  201. <exclusion>
  202. <groupId>io.netty</groupId>
  203. <artifactId>netty-handler</artifactId>
  204. </exclusion>
  205. <exclusion>
  206. <groupId>com.jcraft</groupId>
  207. <artifactId>jzlib</artifactId>
  208. </exclusion>
  209. <exclusion>
  210. <groupId>com.aayushatharva.brotli4j</groupId>
  211. <artifactId>brotli4j</artifactId>
  212. </exclusion>
  213. <exclusion>
  214. <groupId>com.github.luben</groupId>
  215. <artifactId>zstd-jni</artifactId>
  216. </exclusion>
  217. </exclusions>
  218. <optional>false</optional>
  219. </dependency>
  220. <dependency>
  221. <groupId>io.netty</groupId>
  222. <artifactId>netty-codec-http2</artifactId>
  223. <version>4.1.86.Final</version>
  224. <scope>compile</scope>
  225. <exclusions>
  226. <exclusion>
  227. <groupId>io.netty</groupId>
  228. <artifactId>netty-common</artifactId>
  229. </exclusion>
  230. <exclusion>
  231. <groupId>io.netty</groupId>
  232. <artifactId>netty-buffer</artifactId>
  233. </exclusion>
  234. <exclusion>
  235. <groupId>io.netty</groupId>
  236. <artifactId>netty-transport</artifactId>
  237. </exclusion>
  238. <exclusion>
  239. <groupId>io.netty</groupId>
  240. <artifactId>netty-codec</artifactId>
  241. </exclusion>
  242. <exclusion>
  243. <groupId>io.netty</groupId>
  244. <artifactId>netty-handler</artifactId>
  245. </exclusion>
  246. <exclusion>
  247. <groupId>io.netty</groupId>
  248. <artifactId>netty-codec-http</artifactId>
  249. </exclusion>
  250. <exclusion>
  251. <groupId>com.jcraft</groupId>
  252. <artifactId>jzlib</artifactId>
  253. </exclusion>
  254. <exclusion>
  255. <groupId>com.aayushatharva.brotli4j</groupId>
  256. <artifactId>brotli4j</artifactId>
  257. </exclusion>
  258. <exclusion>
  259. <groupId>com.github.luben</groupId>
  260. <artifactId>zstd-jni</artifactId>
  261. </exclusion>
  262. </exclusions>
  263. <optional>false</optional>
  264. </dependency>
  265. <dependency>
  266. <groupId>io.netty</groupId>
  267. <artifactId>netty-codec-memcache</artifactId>
  268. <version>4.1.86.Final</version>
  269. <scope>compile</scope>
  270. <exclusions>
  271. <exclusion>
  272. <groupId>io.netty</groupId>
  273. <artifactId>netty-common</artifactId>
  274. </exclusion>
  275. <exclusion>
  276. <groupId>io.netty</groupId>
  277. <artifactId>netty-buffer</artifactId>
  278. </exclusion>
  279. <exclusion>
  280. <groupId>io.netty</groupId>
  281. <artifactId>netty-transport</artifactId>
  282. </exclusion>
  283. <exclusion>
  284. <groupId>io.netty</groupId>
  285. <artifactId>netty-codec</artifactId>
  286. </exclusion>
  287. </exclusions>
  288. <optional>false</optional>
  289. </dependency>
  290. <dependency>
  291. <groupId>io.netty</groupId>
  292. <artifactId>netty-codec-mqtt</artifactId>
  293. <version>4.1.86.Final</version>
  294. <scope>compile</scope>
  295. <exclusions>
  296. <exclusion>
  297. <groupId>io.netty</groupId>
  298. <artifactId>netty-common</artifactId>
  299. </exclusion>
  300. <exclusion>
  301. <groupId>io.netty</groupId>
  302. <artifactId>netty-buffer</artifactId>
  303. </exclusion>
  304. <exclusion>
  305. <groupId>io.netty</groupId>
  306. <artifactId>netty-transport</artifactId>
  307. </exclusion>
  308. <exclusion>
  309. <groupId>io.netty</groupId>
  310. <artifactId>netty-codec</artifactId>
  311. </exclusion>
  312. </exclusions>
  313. <optional>false</optional>
  314. </dependency>
  315. <dependency>
  316. <groupId>io.netty</groupId>
  317. <artifactId>netty-codec-redis</artifactId>
  318. <version>4.1.86.Final</version>
  319. <scope>compile</scope>
  320. <exclusions>
  321. <exclusion>
  322. <groupId>io.netty</groupId>
  323. <artifactId>netty-common</artifactId>
  324. </exclusion>
  325. <exclusion>
  326. <groupId>io.netty</groupId>
  327. <artifactId>netty-buffer</artifactId>
  328. </exclusion>
  329. <exclusion>
  330. <groupId>io.netty</groupId>
  331. <artifactId>netty-transport</artifactId>
  332. </exclusion>
  333. <exclusion>
  334. <groupId>io.netty</groupId>
  335. <artifactId>netty-codec</artifactId>
  336. </exclusion>
  337. </exclusions>
  338. <optional>false</optional>
  339. </dependency>
  340. <dependency>
  341. <groupId>io.netty</groupId>
  342. <artifactId>netty-codec-smtp</artifactId>
  343. <version>4.1.86.Final</version>
  344. <scope>compile</scope>
  345. <exclusions>
  346. <exclusion>
  347. <groupId>io.netty</groupId>
  348. <artifactId>netty-common</artifactId>
  349. </exclusion>
  350. <exclusion>
  351. <groupId>io.netty</groupId>
  352. <artifactId>netty-buffer</artifactId>
  353. </exclusion>
  354. <exclusion>
  355. <groupId>io.netty</groupId>
  356. <artifactId>netty-transport</artifactId>
  357. </exclusion>
  358. <exclusion>
  359. <groupId>io.netty</groupId>
  360. <artifactId>netty-codec</artifactId>
  361. </exclusion>
  362. </exclusions>
  363. <optional>false</optional>
  364. </dependency>
  365. <dependency>
  366. <groupId>io.netty</groupId>
  367. <artifactId>netty-codec-socks</artifactId>
  368. <version>4.1.86.Final</version>
  369. <scope>compile</scope>
  370. <exclusions>
  371. <exclusion>
  372. <groupId>io.netty</groupId>
  373. <artifactId>netty-common</artifactId>
  374. </exclusion>
  375. <exclusion>
  376. <groupId>io.netty</groupId>
  377. <artifactId>netty-buffer</artifactId>
  378. </exclusion>
  379. <exclusion>
  380. <groupId>io.netty</groupId>
  381. <artifactId>netty-transport</artifactId>
  382. </exclusion>
  383. <exclusion>
  384. <groupId>io.netty</groupId>
  385. <artifactId>netty-codec</artifactId>
  386. </exclusion>
  387. </exclusions>
  388. <optional>false</optional>
  389. </dependency>
  390. <dependency>
  391. <groupId>io.netty</groupId>
  392. <artifactId>netty-codec-stomp</artifactId>
  393. <version>4.1.86.Final</version>
  394. <scope>compile</scope>
  395. <exclusions>
  396. <exclusion>
  397. <groupId>io.netty</groupId>
  398. <artifactId>netty-common</artifactId>
  399. </exclusion>
  400. <exclusion>
  401. <groupId>io.netty</groupId>
  402. <artifactId>netty-buffer</artifactId>
  403. </exclusion>
  404. <exclusion>
  405. <groupId>io.netty</groupId>
  406. <artifactId>netty-transport</artifactId>
  407. </exclusion>
  408. <exclusion>
  409. <groupId>io.netty</groupId>
  410. <artifactId>netty-codec</artifactId>
  411. </exclusion>
  412. </exclusions>
  413. <optional>false</optional>
  414. </dependency>
  415. <dependency>
  416. <groupId>io.netty</groupId>
  417. <artifactId>netty-codec-xml</artifactId>
  418. <version>4.1.86.Final</version>
  419. <scope>compile</scope>
  420. <exclusions>
  421. <exclusion>
  422. <groupId>io.netty</groupId>
  423. <artifactId>netty-buffer</artifactId>
  424. </exclusion>
  425. <exclusion>
  426. <groupId>io.netty</groupId>
  427. <artifactId>netty-transport</artifactId>
  428. </exclusion>
  429. <exclusion>
  430. <groupId>io.netty</groupId>
  431. <artifactId>netty-codec</artifactId>
  432. </exclusion>
  433. <exclusion>
  434. <groupId>com.fasterxml</groupId>
  435. <artifactId>aalto-xml</artifactId>
  436. </exclusion>
  437. </exclusions>
  438. <optional>false</optional>
  439. </dependency>
  440. <dependency>
  441. <groupId>io.netty</groupId>
  442. <artifactId>netty-common</artifactId>
  443. <version>4.1.86.Final</version>
  444. <scope>compile</scope>
  445. <exclusions>
  446. <exclusion>
  447. <groupId>org.graalvm.nativeimage</groupId>
  448. <artifactId>svm</artifactId>
  449. </exclusion>
  450. <exclusion>
  451. <groupId>org.jetbrains</groupId>
  452. <artifactId>annotations-java5</artifactId>
  453. </exclusion>
  454. <exclusion>
  455. <groupId>org.slf4j</groupId>
  456. <artifactId>slf4j-api</artifactId>
  457. </exclusion>
  458. <exclusion>
  459. <groupId>commons-logging</groupId>
  460. <artifactId>commons-logging</artifactId>
  461. </exclusion>
  462. <exclusion>
  463. <groupId>org.apache.logging.log4j</groupId>
  464. <artifactId>log4j-1.2-api</artifactId>
  465. </exclusion>
  466. <exclusion>
  467. <groupId>org.apache.logging.log4j</groupId>
  468. <artifactId>log4j-api</artifactId>
  469. </exclusion>
  470. <exclusion>
  471. <groupId>io.projectreactor.tools</groupId>
  472. <artifactId>blockhound</artifactId>
  473. </exclusion>
  474. </exclusions>
  475. <optional>false</optional>
  476. </dependency>
  477. <dependency>
  478. <groupId>io.netty</groupId>
  479. <artifactId>netty-handler</artifactId>
  480. <version>4.1.86.Final</version>
  481. <scope>compile</scope>
  482. <exclusions>
  483. <exclusion>
  484. <groupId>io.netty</groupId>
  485. <artifactId>netty-common</artifactId>
  486. </exclusion>
  487. <exclusion>
  488. <groupId>io.netty</groupId>
  489. <artifactId>netty-resolver</artifactId>
  490. </exclusion>
  491. <exclusion>
  492. <groupId>io.netty</groupId>
  493. <artifactId>netty-buffer</artifactId>
  494. </exclusion>
  495. <exclusion>
  496. <groupId>io.netty</groupId>
  497. <artifactId>netty-transport</artifactId>
  498. </exclusion>
  499. <exclusion>
  500. <groupId>io.netty</groupId>
  501. <artifactId>netty-transport-native-unix-common</artifactId>
  502. </exclusion>
  503. <exclusion>
  504. <groupId>io.netty</groupId>
  505. <artifactId>netty-codec</artifactId>
  506. </exclusion>
  507. <exclusion>
  508. <groupId>io.netty</groupId>
  509. <artifactId>netty-tcnative-classes</artifactId>
  510. </exclusion>
  511. <exclusion>
  512. <groupId>io.netty</groupId>
  513. <artifactId>netty-tcnative</artifactId>
  514. </exclusion>
  515. <exclusion>
  516. <groupId>org.bouncycastle</groupId>
  517. <artifactId>bcpkix-jdk15on</artifactId>
  518. </exclusion>
  519. <exclusion>
  520. <groupId>org.eclipse.jetty.npn</groupId>
  521. <artifactId>npn-api</artifactId>
  522. </exclusion>
  523. <exclusion>
  524. <groupId>org.eclipse.jetty.alpn</groupId>
  525. <artifactId>alpn-api</artifactId>
  526. </exclusion>
  527. <exclusion>
  528. <groupId>org.conscrypt</groupId>
  529. <artifactId>conscrypt-openjdk-uber</artifactId>
  530. </exclusion>
  531. </exclusions>
  532. <optional>false</optional>
  533. </dependency>
  534. <dependency>
  535. <groupId>io.netty</groupId>
  536. <artifactId>netty-transport-native-unix-common</artifactId>
  537. <version>4.1.86.Final</version>
  538. <scope>compile</scope>
  539. <exclusions>
  540. <exclusion>
  541. <groupId>io.netty</groupId>
  542. <artifactId>netty-jni-util</artifactId>
  543. </exclusion>
  544. <exclusion>
  545. <groupId>io.netty</groupId>
  546. <artifactId>netty-common</artifactId>
  547. </exclusion>
  548. <exclusion>
  549. <groupId>io.netty</groupId>
  550. <artifactId>netty-buffer</artifactId>
  551. </exclusion>
  552. <exclusion>
  553. <groupId>io.netty</groupId>
  554. <artifactId>netty-transport</artifactId>
  555. </exclusion>
  556. </exclusions>
  557. <optional>false</optional>
  558. </dependency>
  559. <dependency>
  560. <groupId>io.netty</groupId>
  561. <artifactId>netty-handler-proxy</artifactId>
  562. <version>4.1.86.Final</version>
  563. <scope>compile</scope>
  564. <exclusions>
  565. <exclusion>
  566. <groupId>io.netty</groupId>
  567. <artifactId>netty-common</artifactId>
  568. </exclusion>
  569. <exclusion>
  570. <groupId>io.netty</groupId>
  571. <artifactId>netty-buffer</artifactId>
  572. </exclusion>
  573. <exclusion>
  574. <groupId>io.netty</groupId>
  575. <artifactId>netty-transport</artifactId>
  576. </exclusion>
  577. <exclusion>
  578. <groupId>io.netty</groupId>
  579. <artifactId>netty-codec</artifactId>
  580. </exclusion>
  581. <exclusion>
  582. <groupId>io.netty</groupId>
  583. <artifactId>netty-codec-socks</artifactId>
  584. </exclusion>
  585. <exclusion>
  586. <groupId>io.netty</groupId>
  587. <artifactId>netty-codec-http</artifactId>
  588. </exclusion>
  589. </exclusions>
  590. <optional>false</optional>
  591. </dependency>
  592. <dependency>
  593. <groupId>io.netty</groupId>
  594. <artifactId>netty-handler-ssl-ocsp</artifactId>
  595. <version>4.1.86.Final</version>
  596. <scope>compile</scope>
  597. <exclusions>
  598. <exclusion>
  599. <groupId>org.bouncycastle</groupId>
  600. <artifactId>bcpkix-jdk15on</artifactId>
  601. </exclusion>
  602. <exclusion>
  603. <groupId>io.netty</groupId>
  604. <artifactId>netty-codec-http</artifactId>
  605. </exclusion>
  606. <exclusion>
  607. <groupId>io.netty</groupId>
  608. <artifactId>netty-transport</artifactId>
  609. </exclusion>
  610. <exclusion>
  611. <groupId>io.netty</groupId>
  612. <artifactId>netty-resolver-dns</artifactId>
  613. </exclusion>
  614. </exclusions>
  615. <optional>false</optional>
  616. </dependency>
  617. <dependency>
  618. <groupId>io.netty</groupId>
  619. <artifactId>netty-resolver</artifactId>
  620. <version>4.1.86.Final</version>
  621. <scope>compile</scope>
  622. <exclusions>
  623. <exclusion>
  624. <groupId>io.netty</groupId>
  625. <artifactId>netty-common</artifactId>
  626. </exclusion>
  627. </exclusions>
  628. <optional>false</optional>
  629. </dependency>
  630. <dependency>
  631. <groupId>io.netty</groupId>
  632. <artifactId>netty-resolver-dns</artifactId>
  633. <version>4.1.86.Final</version>
  634. <scope>compile</scope>
  635. <exclusions>
  636. <exclusion>
  637. <groupId>io.netty</groupId>
  638. <artifactId>netty-common</artifactId>
  639. </exclusion>
  640. <exclusion>
  641. <groupId>io.netty</groupId>
  642. <artifactId>netty-buffer</artifactId>
  643. </exclusion>
  644. <exclusion>
  645. <groupId>io.netty</groupId>
  646. <artifactId>netty-resolver</artifactId>
  647. </exclusion>
  648. <exclusion>
  649. <groupId>io.netty</groupId>
  650. <artifactId>netty-transport</artifactId>
  651. </exclusion>
  652. <exclusion>
  653. <groupId>io.netty</groupId>
  654. <artifactId>netty-codec</artifactId>
  655. </exclusion>
  656. <exclusion>
  657. <groupId>io.netty</groupId>
  658. <artifactId>netty-codec-dns</artifactId>
  659. </exclusion>
  660. <exclusion>
  661. <groupId>io.netty</groupId>
  662. <artifactId>netty-handler</artifactId>
  663. </exclusion>
  664. </exclusions>
  665. <optional>false</optional>
  666. </dependency>
  667. <dependency>
  668. <groupId>io.netty</groupId>
  669. <artifactId>netty-transport</artifactId>
  670. <version>4.1.86.Final</version>
  671. <scope>compile</scope>
  672. <exclusions>
  673. <exclusion>
  674. <groupId>io.netty</groupId>
  675. <artifactId>netty-common</artifactId>
  676. </exclusion>
  677. <exclusion>
  678. <groupId>io.netty</groupId>
  679. <artifactId>netty-buffer</artifactId>
  680. </exclusion>
  681. <exclusion>
  682. <groupId>io.netty</groupId>
  683. <artifactId>netty-resolver</artifactId>
  684. </exclusion>
  685. </exclusions>
  686. <optional>false</optional>
  687. </dependency>
  688. <dependency>
  689. <groupId>io.netty</groupId>
  690. <artifactId>netty-transport-rxtx</artifactId>
  691. <version>4.1.86.Final</version>
  692. <scope>compile</scope>
  693. <exclusions>
  694. <exclusion>
  695. <groupId>io.netty</groupId>
  696. <artifactId>netty-buffer</artifactId>
  697. </exclusion>
  698. <exclusion>
  699. <groupId>io.netty</groupId>
  700. <artifactId>netty-transport</artifactId>
  701. </exclusion>
  702. <exclusion>
  703. <groupId>org.rxtx</groupId>
  704. <artifactId>rxtx</artifactId>
  705. </exclusion>
  706. </exclusions>
  707. <optional>false</optional>
  708. </dependency>
  709. <dependency>
  710. <groupId>io.netty</groupId>
  711. <artifactId>netty-transport-sctp</artifactId>
  712. <version>4.1.86.Final</version>
  713. <scope>compile</scope>
  714. <exclusions>
  715. <exclusion>
  716. <groupId>io.netty</groupId>
  717. <artifactId>netty-common</artifactId>
  718. </exclusion>
  719. <exclusion>
  720. <groupId>io.netty</groupId>
  721. <artifactId>netty-buffer</artifactId>
  722. </exclusion>
  723. <exclusion>
  724. <groupId>io.netty</groupId>
  725. <artifactId>netty-codec</artifactId>
  726. </exclusion>
  727. <exclusion>
  728. <groupId>io.netty</groupId>
  729. <artifactId>netty-transport</artifactId>
  730. </exclusion>
  731. </exclusions>
  732. <optional>false</optional>
  733. </dependency>
  734. <dependency>
  735. <groupId>io.netty</groupId>
  736. <artifactId>netty-transport-udt</artifactId>
  737. <version>4.1.86.Final</version>
  738. <scope>compile</scope>
  739. <exclusions>
  740. <exclusion>
  741. <groupId>io.netty</groupId>
  742. <artifactId>netty-common</artifactId>
  743. </exclusion>
  744. <exclusion>
  745. <groupId>io.netty</groupId>
  746. <artifactId>netty-buffer</artifactId>
  747. </exclusion>
  748. <exclusion>
  749. <groupId>io.netty</groupId>
  750. <artifactId>netty-transport</artifactId>
  751. </exclusion>
  752. <exclusion>
  753. <groupId>com.barchart.udt</groupId>
  754. <artifactId>barchart-udt-bundle</artifactId>
  755. </exclusion>
  756. </exclusions>
  757. <optional>false</optional>
  758. </dependency>
  759. <dependency>
  760. <groupId>io.netty</groupId>
  761. <artifactId>netty-transport-classes-epoll</artifactId>
  762. <version>4.1.86.Final</version>
  763. <scope>compile</scope>
  764. <exclusions>
  765. <exclusion>
  766. <groupId>io.netty</groupId>
  767. <artifactId>netty-common</artifactId>
  768. </exclusion>
  769. <exclusion>
  770. <groupId>io.netty</groupId>
  771. <artifactId>netty-buffer</artifactId>
  772. </exclusion>
  773. <exclusion>
  774. <groupId>io.netty</groupId>
  775. <artifactId>netty-transport</artifactId>
  776. </exclusion>
  777. <exclusion>
  778. <groupId>io.netty</groupId>
  779. <artifactId>netty-transport-native-unix-common</artifactId>
  780. </exclusion>
  781. </exclusions>
  782. <optional>false</optional>
  783. </dependency>
  784. <dependency>
  785. <groupId>io.netty</groupId>
  786. <artifactId>netty-transport-classes-kqueue</artifactId>
  787. <version>4.1.86.Final</version>
  788. <scope>compile</scope>
  789. <exclusions>
  790. <exclusion>
  791. <groupId>io.netty</groupId>
  792. <artifactId>netty-common</artifactId>
  793. </exclusion>
  794. <exclusion>
  795. <groupId>io.netty</groupId>
  796. <artifactId>netty-buffer</artifactId>
  797. </exclusion>
  798. <exclusion>
  799. <groupId>io.netty</groupId>
  800. <artifactId>netty-transport</artifactId>
  801. </exclusion>
  802. <exclusion>
  803. <groupId>io.netty</groupId>
  804. <artifactId>netty-transport-native-unix-common</artifactId>
  805. </exclusion>
  806. </exclusions>
  807. <optional>false</optional>
  808. </dependency>
  809. <dependency>
  810. <groupId>io.netty</groupId>
  811. <artifactId>netty-resolver-dns-classes-macos</artifactId>
  812. <version>4.1.86.Final</version>
  813. <scope>compile</scope>
  814. <exclusions>
  815. <exclusion>
  816. <groupId>io.netty</groupId>
  817. <artifactId>netty-common</artifactId>
  818. </exclusion>
  819. <exclusion>
  820. <groupId>io.netty</groupId>
  821. <artifactId>netty-resolver-dns</artifactId>
  822. </exclusion>
  823. <exclusion>
  824. <groupId>io.netty</groupId>
  825. <artifactId>netty-transport-native-unix-common</artifactId>
  826. </exclusion>
  827. </exclusions>
  828. <optional>false</optional>
  829. </dependency>
  830. <dependency>
  831. <groupId>io.netty</groupId>
  832. <artifactId>netty-transport-native-epoll</artifactId>
  833. <version>4.1.86.Final</version>
  834. <classifier>linux-x86_64</classifier>
  835. <scope>runtime</scope>
  836. <exclusions>
  837. <exclusion>
  838. <groupId>io.netty</groupId>
  839. <artifactId>netty-common</artifactId>
  840. </exclusion>
  841. <exclusion>
  842. <groupId>io.netty</groupId>
  843. <artifactId>netty-buffer</artifactId>
  844. </exclusion>
  845. <exclusion>
  846. <groupId>io.netty</groupId>
  847. <artifactId>netty-transport</artifactId>
  848. </exclusion>
  849. <exclusion>
  850. <groupId>io.netty</groupId>
  851. <artifactId>netty-transport-native-unix-common</artifactId>
  852. </exclusion>
  853. <exclusion>
  854. <groupId>io.netty</groupId>
  855. <artifactId>netty-transport-classes-epoll</artifactId>
  856. </exclusion>
  857. </exclusions>
  858. <optional>false</optional>
  859. </dependency>
  860. <dependency>
  861. <groupId>io.netty</groupId>
  862. <artifactId>netty-transport-native-epoll</artifactId>
  863. <version>4.1.86.Final</version>
  864. <classifier>linux-aarch_64</classifier>
  865. <scope>runtime</scope>
  866. <exclusions>
  867. <exclusion>
  868. <groupId>io.netty</groupId>
  869. <artifactId>netty-common</artifactId>
  870. </exclusion>
  871. <exclusion>
  872. <groupId>io.netty</groupId>
  873. <artifactId>netty-buffer</artifactId>
  874. </exclusion>
  875. <exclusion>
  876. <groupId>io.netty</groupId>
  877. <artifactId>netty-transport</artifactId>
  878. </exclusion>
  879. <exclusion>
  880. <groupId>io.netty</groupId>
  881. <artifactId>netty-transport-native-unix-common</artifactId>
  882. </exclusion>
  883. <exclusion>
  884. <groupId>io.netty</groupId>
  885. <artifactId>netty-transport-classes-epoll</artifactId>
  886. </exclusion>
  887. </exclusions>
  888. <optional>false</optional>
  889. </dependency>
  890. <dependency>
  891. <groupId>io.netty</groupId>
  892. <artifactId>netty-transport-native-kqueue</artifactId>
  893. <version>4.1.86.Final</version>
  894. <classifier>osx-x86_64</classifier>
  895. <scope>runtime</scope>
  896. <exclusions>
  897. <exclusion>
  898. <groupId>io.netty</groupId>
  899. <artifactId>netty-common</artifactId>
  900. </exclusion>
  901. <exclusion>
  902. <groupId>io.netty</groupId>
  903. <artifactId>netty-buffer</artifactId>
  904. </exclusion>
  905. <exclusion>
  906. <groupId>io.netty</groupId>
  907. <artifactId>netty-transport</artifactId>
  908. </exclusion>
  909. <exclusion>
  910. <groupId>io.netty</groupId>
  911. <artifactId>netty-transport-native-unix-common</artifactId>
  912. </exclusion>
  913. <exclusion>
  914. <groupId>io.netty</groupId>
  915. <artifactId>netty-transport-classes-kqueue</artifactId>
  916. </exclusion>
  917. <exclusion>
  918. <groupId>io.netty</groupId>
  919. <artifactId>netty-transport-native-unix-common</artifactId>
  920. </exclusion>
  921. </exclusions>
  922. <optional>false</optional>
  923. </dependency>
  924. <dependency>
  925. <groupId>io.netty</groupId>
  926. <artifactId>netty-transport-native-kqueue</artifactId>
  927. <version>4.1.86.Final</version>
  928. <classifier>osx-aarch_64</classifier>
  929. <scope>runtime</scope>
  930. <exclusions>
  931. <exclusion>
  932. <groupId>io.netty</groupId>
  933. <artifactId>netty-common</artifactId>
  934. </exclusion>
  935. <exclusion>
  936. <groupId>io.netty</groupId>
  937. <artifactId>netty-buffer</artifactId>
  938. </exclusion>
  939. <exclusion>
  940. <groupId>io.netty</groupId>
  941. <artifactId>netty-transport</artifactId>
  942. </exclusion>
  943. <exclusion>
  944. <groupId>io.netty</groupId>
  945. <artifactId>netty-transport-native-unix-common</artifactId>
  946. </exclusion>
  947. <exclusion>
  948. <groupId>io.netty</groupId>
  949. <artifactId>netty-transport-classes-kqueue</artifactId>
  950. </exclusion>
  951. <exclusion>
  952. <groupId>io.netty</groupId>
  953. <artifactId>netty-transport-native-unix-common</artifactId>
  954. </exclusion>
  955. </exclusions>
  956. <optional>false</optional>
  957. </dependency>
  958. <dependency>
  959. <groupId>io.netty</groupId>
  960. <artifactId>netty-resolver-dns-native-macos</artifactId>
  961. <version>4.1.86.Final</version>
  962. <classifier>osx-x86_64</classifier>
  963. <scope>runtime</scope>
  964. <exclusions>
  965. <exclusion>
  966. <groupId>io.netty</groupId>
  967. <artifactId>netty-resolver-dns-classes-macos</artifactId>
  968. </exclusion>
  969. <exclusion>
  970. <groupId>io.netty</groupId>
  971. <artifactId>netty-transport-native-unix-common</artifactId>
  972. </exclusion>
  973. </exclusions>
  974. <optional>false</optional>
  975. </dependency>
  976. <dependency>
  977. <groupId>io.netty</groupId>
  978. <artifactId>netty-resolver-dns-native-macos</artifactId>
  979. <version>4.1.86.Final</version>
  980. <classifier>osx-aarch_64</classifier>
  981. <scope>runtime</scope>
  982. <exclusions>
  983. <exclusion>
  984. <groupId>io.netty</groupId>
  985. <artifactId>netty-resolver-dns-classes-macos</artifactId>
  986. </exclusion>
  987. <exclusion>
  988. <groupId>io.netty</groupId>
  989. <artifactId>netty-transport-native-unix-common</artifactId>
  990. </exclusion>
  991. </exclusions>
  992. <optional>false</optional>
  993. </dependency>
  994. <dependency>
  995. <groupId>io.netty</groupId>
  996. <artifactId>netty-transport-native-epoll</artifactId>
  997. <version>4.1.86.Final</version>
  998. <classifier>linux-x86_64</classifier>
  999. <scope>runtime</scope>
  1000. </dependency>
  1001. <dependency>
  1002. <groupId>io.netty</groupId>
  1003. <artifactId>netty-transport-native-epoll</artifactId>
  1004. <version>4.1.86.Final</version>
  1005. <classifier>linux-aarch_64</classifier>
  1006. <scope>runtime</scope>
  1007. </dependency>
  1008. <dependency>
  1009. <groupId>io.netty</groupId>
  1010. <artifactId>netty-transport-native-kqueue</artifactId>
  1011. <version>4.1.86.Final</version>
  1012. <classifier>osx-x86_64</classifier>
  1013. <scope>runtime</scope>
  1014. </dependency>
  1015. <dependency>
  1016. <groupId>io.netty</groupId>
  1017. <artifactId>netty-transport-native-kqueue</artifactId>
  1018. <version>4.1.86.Final</version>
  1019. <classifier>osx-aarch_64</classifier>
  1020. <scope>runtime</scope>
  1021. </dependency>
  1022. <dependency>
  1023. <groupId>io.netty</groupId>
  1024. <artifactId>netty-resolver-dns-native-macos</artifactId>
  1025. <version>4.1.86.Final</version>
  1026. <classifier>osx-x86_64</classifier>
  1027. <scope>runtime</scope>
  1028. </dependency>
  1029. <dependency>
  1030. <groupId>io.netty</groupId>
  1031. <artifactId>netty-resolver-dns-native-macos</artifactId>
  1032. <version>4.1.86.Final</version>
  1033. <classifier>osx-aarch_64</classifier>
  1034. <scope>runtime</scope>
  1035. </dependency>
  1036. </dependencies>
  1037. <repositories>
  1038. <repository>
  1039. <releases>
  1040. <enabled>false</enabled>
  1041. </releases>
  1042. <snapshots>
  1043. <enabled>true</enabled>
  1044. </snapshots>
  1045. <id>sonatype-nexus-snapshots</id>
  1046. <name>Sonatype Nexus Snapshots</name>
  1047. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  1048. </repository>
  1049. </repositories>
  1050. </project>