netty-handler-4.1.27.Final.pom 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. ~ http://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 http://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.27.Final</version>
  23. </parent>
  24. <artifactId>netty-handler</artifactId>
  25. <packaging>jar</packaging>
  26. <properties>
  27. <javaModuleName>io.netty.handler</javaModuleName>
  28. <!-- Needed for SelfSignedCertificate -->
  29. <argLine.java9.extras>--add-exports java.base/sun.security.x509=ALL-UNNAMED</argLine.java9.extras>
  30. </properties>
  31. <name>Netty/Handler</name>
  32. <dependencies>
  33. <dependency>
  34. <groupId>${project.groupId}</groupId>
  35. <artifactId>netty-buffer</artifactId>
  36. <version>${project.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>${project.groupId}</groupId>
  40. <artifactId>netty-transport</artifactId>
  41. <version>${project.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>${project.groupId}</groupId>
  45. <artifactId>netty-codec</artifactId>
  46. <version>${project.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>${project.groupId}</groupId>
  50. <artifactId>${tcnative.artifactId}</artifactId>
  51. <classifier>${tcnative.classifier}</classifier>
  52. <optional>true</optional>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.bouncycastle</groupId>
  56. <artifactId>bcpkix-jdk15on</artifactId>
  57. <optional>true</optional>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.eclipse.jetty.npn</groupId>
  61. <artifactId>npn-api</artifactId>
  62. <optional>true</optional>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.eclipse.jetty.alpn</groupId>
  66. <artifactId>alpn-api</artifactId>
  67. <optional>true</optional>
  68. </dependency>
  69. <dependency>
  70. <groupId>${conscrypt.groupId}</groupId>
  71. <artifactId>${conscrypt.artifactId}</artifactId>
  72. <classifier>${conscrypt.classifier}</classifier>
  73. <optional>true</optional>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.mockito</groupId>
  77. <artifactId>mockito-core</artifactId>
  78. </dependency>
  79. </dependencies>
  80. </project>