netty-bom-4.1.77.Final.pom 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 2017 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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
  18. <modelVersion>4.0.0</modelVersion>
  19. <parent>
  20. <groupId>org.sonatype.oss</groupId>
  21. <artifactId>oss-parent</artifactId>
  22. <version>7</version>
  23. <relativePath />
  24. </parent>
  25. <groupId>io.netty</groupId>
  26. <artifactId>netty-bom</artifactId>
  27. <version>4.1.77.Final</version>
  28. <packaging>pom</packaging>
  29. <name>Netty/BOM</name>
  30. <description>Netty (Bill of Materials)</description>
  31. <url>https://netty.io/</url>
  32. <organization>
  33. <name>The Netty Project</name>
  34. <url>https://netty.io/</url>
  35. </organization>
  36. <licenses>
  37. <license>
  38. <name>Apache License, Version 2.0</name>
  39. <url>https://www.apache.org/licenses/LICENSE-2.0</url>
  40. </license>
  41. </licenses>
  42. <inceptionYear>2008</inceptionYear>
  43. <scm>
  44. <url>https://github.com/netty/netty</url>
  45. <connection>scm:git:git://github.com/netty/netty.git</connection>
  46. <developerConnection>scm:git:ssh://git@github.com/netty/netty.git</developerConnection>
  47. <tag>netty-4.1.77.Final</tag>
  48. </scm>
  49. <developers>
  50. <developer>
  51. <id>netty.io</id>
  52. <name>The Netty Project Contributors</name>
  53. <email>netty@googlegroups.com</email>
  54. <url>https://netty.io/</url>
  55. <organization>The Netty Project</organization>
  56. <organizationUrl>https://netty.io/</organizationUrl>
  57. </developer>
  58. </developers>
  59. <properties>
  60. <!-- Keep in sync with ../pom.xml -->
  61. <tcnative.version>2.0.52.Final</tcnative.version>
  62. </properties>
  63. <build>
  64. <plugins>
  65. <plugin>
  66. <groupId>com.commsen.maven</groupId>
  67. <artifactId>bom-helper-maven-plugin</artifactId>
  68. <version>0.4.0</version>
  69. <goals>
  70. <goal>resolve</goal>
  71. </goals>
  72. </plugin>
  73. </plugins>
  74. </build>
  75. <dependencyManagement>
  76. <dependencies>
  77. <!-- All release modules -->
  78. <dependency>
  79. <groupId>io.netty</groupId>
  80. <artifactId>netty-buffer</artifactId>
  81. <version>${project.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>io.netty</groupId>
  85. <artifactId>netty-codec</artifactId>
  86. <version>${project.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>io.netty</groupId>
  90. <artifactId>netty-codec-dns</artifactId>
  91. <version>${project.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>io.netty</groupId>
  95. <artifactId>netty-codec-haproxy</artifactId>
  96. <version>${project.version}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>io.netty</groupId>
  100. <artifactId>netty-codec-http</artifactId>
  101. <version>${project.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>io.netty</groupId>
  105. <artifactId>netty-codec-http2</artifactId>
  106. <version>${project.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>io.netty</groupId>
  110. <artifactId>netty-codec-memcache</artifactId>
  111. <version>${project.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>io.netty</groupId>
  115. <artifactId>netty-codec-mqtt</artifactId>
  116. <version>${project.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>io.netty</groupId>
  120. <artifactId>netty-codec-redis</artifactId>
  121. <version>${project.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>io.netty</groupId>
  125. <artifactId>netty-codec-smtp</artifactId>
  126. <version>${project.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>io.netty</groupId>
  130. <artifactId>netty-codec-socks</artifactId>
  131. <version>${project.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>io.netty</groupId>
  135. <artifactId>netty-codec-stomp</artifactId>
  136. <version>${project.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>io.netty</groupId>
  140. <artifactId>netty-codec-xml</artifactId>
  141. <version>${project.version}</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>io.netty</groupId>
  145. <artifactId>netty-common</artifactId>
  146. <version>${project.version}</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>io.netty</groupId>
  150. <artifactId>netty-dev-tools</artifactId>
  151. <version>${project.version}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>io.netty</groupId>
  155. <artifactId>netty-handler</artifactId>
  156. <version>${project.version}</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>io.netty</groupId>
  160. <artifactId>netty-handler-proxy</artifactId>
  161. <version>${project.version}</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>io.netty</groupId>
  165. <artifactId>netty-resolver</artifactId>
  166. <version>${project.version}</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>io.netty</groupId>
  170. <artifactId>netty-resolver-dns</artifactId>
  171. <version>${project.version}</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>io.netty</groupId>
  175. <artifactId>netty-transport</artifactId>
  176. <version>${project.version}</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>io.netty</groupId>
  180. <artifactId>netty-transport-rxtx</artifactId>
  181. <version>${project.version}</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>io.netty</groupId>
  185. <artifactId>netty-transport-sctp</artifactId>
  186. <version>${project.version}</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>io.netty</groupId>
  190. <artifactId>netty-transport-udt</artifactId>
  191. <version>${project.version}</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>io.netty</groupId>
  195. <artifactId>netty-example</artifactId>
  196. <version>${project.version}</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>io.netty</groupId>
  200. <artifactId>netty-all</artifactId>
  201. <version>${project.version}</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>io.netty</groupId>
  205. <artifactId>netty-resolver-dns-classes-macos</artifactId>
  206. <version>${project.version}</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>io.netty</groupId>
  210. <artifactId>netty-resolver-dns-native-macos</artifactId>
  211. <version>${project.version}</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>io.netty</groupId>
  215. <artifactId>netty-resolver-dns-native-macos</artifactId>
  216. <version>${project.version}</version>
  217. <classifier>osx-x86_64</classifier>
  218. </dependency>
  219. <dependency>
  220. <groupId>io.netty</groupId>
  221. <artifactId>netty-resolver-dns-native-macos</artifactId>
  222. <version>${project.version}</version>
  223. <classifier>osx-aarch_64</classifier>
  224. </dependency>
  225. <dependency>
  226. <groupId>io.netty</groupId>
  227. <artifactId>netty-transport-native-unix-common</artifactId>
  228. <version>${project.version}</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>io.netty</groupId>
  232. <artifactId>netty-transport-native-unix-common</artifactId>
  233. <version>${project.version}</version>
  234. <classifier>linux-aarch_64</classifier>
  235. </dependency>
  236. <dependency>
  237. <groupId>io.netty</groupId>
  238. <artifactId>netty-transport-native-unix-common</artifactId>
  239. <version>${project.version}</version>
  240. <classifier>linux-x86_64</classifier>
  241. </dependency>
  242. <dependency>
  243. <groupId>io.netty</groupId>
  244. <artifactId>netty-transport-native-unix-common</artifactId>
  245. <version>${project.version}</version>
  246. <classifier>osx-x86_64</classifier>
  247. </dependency>
  248. <dependency>
  249. <groupId>io.netty</groupId>
  250. <artifactId>netty-transport-native-unix-common</artifactId>
  251. <version>${project.version}</version>
  252. <classifier>osx-aarch_64</classifier>
  253. </dependency>
  254. <dependency>
  255. <groupId>io.netty</groupId>
  256. <artifactId>netty-transport-classes-epoll</artifactId>
  257. <version>${project.version}</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>io.netty</groupId>
  261. <artifactId>netty-transport-native-epoll</artifactId>
  262. <version>${project.version}</version>
  263. </dependency>
  264. <dependency>
  265. <groupId>io.netty</groupId>
  266. <artifactId>netty-transport-native-epoll</artifactId>
  267. <version>${project.version}</version>
  268. <classifier>linux-aarch_64</classifier>
  269. </dependency>
  270. <dependency>
  271. <groupId>io.netty</groupId>
  272. <artifactId>netty-transport-native-epoll</artifactId>
  273. <version>${project.version}</version>
  274. <classifier>linux-x86_64</classifier>
  275. </dependency>
  276. <dependency>
  277. <groupId>io.netty</groupId>
  278. <artifactId>netty-transport-classes-kqueue</artifactId>
  279. <version>${project.version}</version>
  280. </dependency>
  281. <dependency>
  282. <groupId>io.netty</groupId>
  283. <artifactId>netty-transport-native-kqueue</artifactId>
  284. <version>${project.version}</version>
  285. </dependency>
  286. <dependency>
  287. <groupId>io.netty</groupId>
  288. <artifactId>netty-transport-native-kqueue</artifactId>
  289. <version>${project.version}</version>
  290. <classifier>osx-x86_64</classifier>
  291. </dependency>
  292. <dependency>
  293. <groupId>io.netty</groupId>
  294. <artifactId>netty-transport-native-kqueue</artifactId>
  295. <version>${project.version}</version>
  296. <classifier>osx-aarch_64</classifier>
  297. </dependency>
  298. <!-- Add netty-tcnative* as well as users need to ensure they use the correct version -->
  299. <dependency>
  300. <groupId>io.netty</groupId>
  301. <artifactId>netty-tcnative-classes</artifactId>
  302. <version>${tcnative.version}</version>
  303. </dependency>
  304. <dependency>
  305. <groupId>io.netty</groupId>
  306. <artifactId>netty-tcnative</artifactId>
  307. <version>${tcnative.version}</version>
  308. <classifier>linux-x86_64</classifier>
  309. </dependency>
  310. <dependency>
  311. <groupId>io.netty</groupId>
  312. <artifactId>netty-tcnative</artifactId>
  313. <version>${tcnative.version}</version>
  314. <classifier>linux-x86_64-fedora</classifier>
  315. </dependency>
  316. <dependency>
  317. <groupId>io.netty</groupId>
  318. <artifactId>netty-tcnative</artifactId>
  319. <version>${tcnative.version}</version>
  320. <classifier>linux-aarch_64-fedora</classifier>
  321. </dependency>
  322. <dependency>
  323. <groupId>io.netty</groupId>
  324. <artifactId>netty-tcnative</artifactId>
  325. <version>${tcnative.version}</version>
  326. <classifier>osx-x86_64</classifier>
  327. </dependency>
  328. <dependency>
  329. <groupId>io.netty</groupId>
  330. <artifactId>netty-tcnative-boringssl-static</artifactId>
  331. <version>${tcnative.version}</version>
  332. </dependency>
  333. <dependency>
  334. <groupId>io.netty</groupId>
  335. <artifactId>netty-tcnative-boringssl-static</artifactId>
  336. <version>${tcnative.version}</version>
  337. <classifier>linux-x86_64</classifier>
  338. </dependency>
  339. <dependency>
  340. <groupId>io.netty</groupId>
  341. <artifactId>netty-tcnative-boringssl-static</artifactId>
  342. <version>${tcnative.version}</version>
  343. <classifier>linux-aarch_64</classifier>
  344. </dependency>
  345. <dependency>
  346. <groupId>io.netty</groupId>
  347. <artifactId>netty-tcnative-boringssl-static</artifactId>
  348. <version>${tcnative.version}</version>
  349. <classifier>osx-x86_64</classifier>
  350. </dependency>
  351. <dependency>
  352. <groupId>io.netty</groupId>
  353. <artifactId>netty-tcnative-boringssl-static</artifactId>
  354. <version>${tcnative.version}</version>
  355. <classifier>osx-aarch_64</classifier>
  356. </dependency>
  357. <dependency>
  358. <groupId>io.netty</groupId>
  359. <artifactId>netty-tcnative-boringssl-static</artifactId>
  360. <version>${tcnative.version}</version>
  361. <classifier>windows-x86_64</classifier>
  362. </dependency>
  363. </dependencies>
  364. </dependencyManagement>
  365. </project>