netty-transport-udt-4.1.100.Final.pom 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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.100.Final</version>
  23. </parent>
  24. <artifactId>netty-transport-udt</artifactId>
  25. <packaging>jar</packaging>
  26. <name>Netty/Transport/UDT</name>
  27. <properties>
  28. <javaModuleName>io.netty.transport.udt</javaModuleName>
  29. </properties>
  30. <dependencies>
  31. <!-- MAIN -->
  32. <dependency>
  33. <groupId>${project.groupId}</groupId>
  34. <artifactId>netty-common</artifactId>
  35. <version>${project.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>${project.groupId}</groupId>
  39. <artifactId>netty-buffer</artifactId>
  40. <version>${project.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>${project.groupId}</groupId>
  44. <artifactId>netty-transport</artifactId>
  45. <version>${project.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.barchart.udt</groupId>
  49. <artifactId>barchart-udt-bundle</artifactId>
  50. </dependency>
  51. <!-- TEST -->
  52. <!-- see https://github.com/netty/netty/issues/874 -->
  53. <dependency>
  54. <groupId>com.yammer.metrics</groupId>
  55. <artifactId>metrics-core</artifactId>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.google.caliper</groupId>
  60. <artifactId>caliper</artifactId>
  61. <scope>test</scope>
  62. </dependency>
  63. </dependencies>
  64. <build>
  65. <plugins>
  66. <!-- run each test in separate JVM -->
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-surefire-plugin</artifactId>
  70. <configuration>
  71. <reuseForks>false</reuseForks>
  72. </configuration>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>