netty-codec-http-4.1.119.Final.pom 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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 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.119.Final</version>
  23. </parent>
  24. <artifactId>netty-codec-http</artifactId>
  25. <packaging>jar</packaging>
  26. <name>Netty/Codec/HTTP</name>
  27. <properties>
  28. <javaModuleName>io.netty.codec.http</javaModuleName>
  29. </properties>
  30. <dependencies>
  31. <dependency>
  32. <groupId>${project.groupId}</groupId>
  33. <artifactId>netty-common</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>${project.groupId}</groupId>
  38. <artifactId>netty-buffer</artifactId>
  39. <version>${project.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>${project.groupId}</groupId>
  43. <artifactId>netty-transport</artifactId>
  44. <version>${project.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>${project.groupId}</groupId>
  48. <artifactId>netty-codec</artifactId>
  49. <version>${project.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>${project.groupId}</groupId>
  53. <artifactId>netty-handler</artifactId>
  54. <version>${project.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.jcraft</groupId>
  58. <artifactId>jzlib</artifactId>
  59. <optional>true</optional>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.mockito</groupId>
  63. <artifactId>mockito-core</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>commons-io</groupId>
  67. <artifactId>commons-io</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.aayushatharva.brotli4j</groupId>
  71. <artifactId>brotli4j</artifactId>
  72. <optional>true</optional>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.aayushatharva.brotli4j</groupId>
  76. <artifactId>native-linux-x86_64</artifactId>
  77. <scope>test</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.aayushatharva.brotli4j</groupId>
  81. <artifactId>native-linux-aarch64</artifactId>
  82. <scope>test</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.aayushatharva.brotli4j</groupId>
  86. <artifactId>native-linux-riscv64</artifactId>
  87. <scope>test</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.aayushatharva.brotli4j</groupId>
  91. <artifactId>native-osx-x86_64</artifactId>
  92. <scope>test</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.aayushatharva.brotli4j</groupId>
  96. <artifactId>native-osx-aarch64</artifactId>
  97. <scope>test</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.aayushatharva.brotli4j</groupId>
  101. <artifactId>native-windows-x86_64</artifactId>
  102. <scope>test</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.github.luben</groupId>
  106. <artifactId>zstd-jni</artifactId>
  107. <optional>true</optional>
  108. </dependency>
  109. <!-- Automatic native-image reflection metadata generation for handlers dependencies -->
  110. <dependency>
  111. <groupId>org.reflections</groupId>
  112. <artifactId>reflections</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.google.code.gson</groupId>
  116. <artifactId>gson</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>${project.groupId}</groupId>
  120. <artifactId>netty-transport</artifactId>
  121. <version>${project.version}</version>
  122. <type>test-jar</type>
  123. <scope>test</scope>
  124. </dependency>
  125. </dependencies>
  126. </project>