netty-codec-http2-4.1.110.Final.pom 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 2014 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>io.netty</groupId>
  21. <artifactId>netty-parent</artifactId>
  22. <version>4.1.110.Final</version>
  23. </parent>
  24. <artifactId>netty-codec-http2</artifactId>
  25. <packaging>jar</packaging>
  26. <name>Netty/Codec/HTTP2</name>
  27. <properties>
  28. <javaModuleName>io.netty.codec.http2</javaModuleName>
  29. <!-- Needed for SSL tests as these use the SelfSignedCertificate -->
  30. <argLine.java9.extras>--add-exports java.base/sun.security.x509=ALL-UNNAMED</argLine.java9.extras>
  31. </properties>
  32. <dependencies>
  33. <dependency>
  34. <groupId>${project.groupId}</groupId>
  35. <artifactId>netty-common</artifactId>
  36. <version>${project.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>${project.groupId}</groupId>
  40. <artifactId>netty-buffer</artifactId>
  41. <version>${project.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>${project.groupId}</groupId>
  45. <artifactId>netty-transport</artifactId>
  46. <version>${project.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>${project.groupId}</groupId>
  50. <artifactId>netty-codec</artifactId>
  51. <version>${project.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>${project.groupId}</groupId>
  55. <artifactId>netty-handler</artifactId>
  56. <version>${project.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>${project.groupId}</groupId>
  60. <artifactId>netty-codec-http</artifactId>
  61. <version>${project.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.jcraft</groupId>
  65. <artifactId>jzlib</artifactId>
  66. <optional>true</optional>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.mockito</groupId>
  70. <artifactId>mockito-core</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.bouncycastle</groupId>
  74. <artifactId>bcpkix-jdk15on</artifactId>
  75. <scope>test</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>${project.groupId}</groupId>
  79. <artifactId>${tcnative.artifactId}</artifactId>
  80. <classifier>${tcnative.classifier}</classifier>
  81. <scope>test</scope>
  82. <optional>true</optional>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.aayushatharva.brotli4j</groupId>
  86. <artifactId>brotli4j</artifactId>
  87. <optional>true</optional>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.aayushatharva.brotli4j</groupId>
  91. <artifactId>native-linux-x86_64</artifactId>
  92. <scope>test</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.aayushatharva.brotli4j</groupId>
  96. <artifactId>native-linux-aarch64</artifactId>
  97. <scope>test</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.aayushatharva.brotli4j</groupId>
  101. <artifactId>native-linux-riscv64</artifactId>
  102. <scope>test</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.aayushatharva.brotli4j</groupId>
  106. <artifactId>native-linux-armv7</artifactId>
  107. <scope>test</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.aayushatharva.brotli4j</groupId>
  111. <artifactId>native-osx-x86_64</artifactId>
  112. <scope>test</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.aayushatharva.brotli4j</groupId>
  116. <artifactId>native-osx-aarch64</artifactId>
  117. <scope>test</scope>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.aayushatharva.brotli4j</groupId>
  121. <artifactId>native-windows-x86_64</artifactId>
  122. <scope>test</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.github.luben</groupId>
  126. <artifactId>zstd-jni</artifactId>
  127. <optional>true</optional>
  128. </dependency>
  129. <!-- Automatic native-image reflection metadata generation for handlers dependencies -->
  130. <dependency>
  131. <groupId>org.reflections</groupId>
  132. <artifactId>reflections</artifactId>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.google.code.gson</groupId>
  136. <artifactId>gson</artifactId>
  137. </dependency>
  138. <dependency>
  139. <groupId>${project.groupId}</groupId>
  140. <artifactId>netty-transport</artifactId>
  141. <version>${project.version}</version>
  142. <type>test-jar</type>
  143. <scope>test</scope>
  144. </dependency>
  145. </dependencies>
  146. </project>