netty-incubator-codec-classes-quic-0.0.62.Final.pom 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 2021 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.incubator</groupId>
  21. <artifactId>netty-incubator-codec-parent-quic</artifactId>
  22. <version>0.0.62.Final</version>
  23. </parent>
  24. <artifactId>netty-incubator-codec-classes-quic</artifactId>
  25. <version>0.0.62.Final</version>
  26. <name>Netty/Incubator/Codec/Classes/Quic</name>
  27. <packaging>jar</packaging>
  28. <properties>
  29. <javaModuleName>io.netty.incubator.codec.classes.quic</javaModuleName>
  30. </properties>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <artifactId>maven-jar-plugin</artifactId>
  35. <version>3.2.0</version>
  36. <executions>
  37. <execution>
  38. <id>default-jar</id>
  39. <configuration>
  40. <archive>
  41. <manifest>
  42. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  43. <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
  44. </manifest>
  45. <manifestEntries>
  46. <Automatic-Module-Name>${javaModuleName}</Automatic-Module-Name>
  47. </manifestEntries>
  48. <index>true</index>
  49. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  50. </archive>
  51. </configuration>
  52. </execution>
  53. </executions>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. <dependencies>
  58. <dependency>
  59. <groupId>io.netty</groupId>
  60. <artifactId>netty-common</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>io.netty</groupId>
  64. <artifactId>netty-buffer</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>io.netty</groupId>
  68. <artifactId>netty-codec</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>io.netty</groupId>
  72. <artifactId>netty-handler</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>io.netty</groupId>
  76. <artifactId>netty-transport</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>io.netty</groupId>
  80. <artifactId>netty-transport-classes-epoll</artifactId>
  81. <!-- Let's mark as optional as it is not strictly needed -->
  82. <optional>true</optional>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.jetbrains</groupId>
  86. <artifactId>annotations</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.google.code.findbugs</groupId>
  90. <artifactId>jsr305</artifactId>
  91. </dependency>
  92. </dependencies>
  93. </project>