reactor-netty-http-1.1.19.pom 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>io.projectreactor.netty</groupId>
  5. <artifactId>reactor-netty-http</artifactId>
  6. <version>1.1.19</version>
  7. <name>HTTP functionality for the Reactor Netty library</name>
  8. <description>HTTP functionality for the Reactor Netty library</description>
  9. <url>https://github.com/reactor/reactor-netty</url>
  10. <organization>
  11. <name>reactor</name>
  12. <url>https://github.com/reactor</url>
  13. </organization>
  14. <licenses>
  15. <license>
  16. <name>The Apache Software License, Version 2.0</name>
  17. <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
  18. <distribution>repo</distribution>
  19. </license>
  20. </licenses>
  21. <developers>
  22. <developer>
  23. <id>simonbasle</id>
  24. <name>Simon Baslé</name>
  25. <email>sbasle@vmware.com</email>
  26. </developer>
  27. <developer>
  28. <id>violetagg</id>
  29. <name>Violeta Georgieva</name>
  30. <email>violetag@vmware.com</email>
  31. </developer>
  32. </developers>
  33. <scm>
  34. <connection>scm:git:git://github.com/reactor/reactor-netty</connection>
  35. <developerConnection>scm:git:git://github.com/reactor/reactor-netty</developerConnection>
  36. <url>https://github.com/reactor/reactor-netty</url>
  37. </scm>
  38. <issueManagement>
  39. <system>GitHub Issues</system>
  40. <url>https://github.com/reactor/reactor-netty/issues</url>
  41. </issueManagement>
  42. <dependencies>
  43. <dependency>
  44. <groupId>io.netty</groupId>
  45. <artifactId>netty-codec-http</artifactId>
  46. <version>4.1.109.Final</version>
  47. <scope>compile</scope>
  48. <exclusions>
  49. <exclusion>
  50. <groupId>commons-logging</groupId>
  51. <artifactId>commons-logging</artifactId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <dependency>
  56. <groupId>io.netty</groupId>
  57. <artifactId>netty-codec-http2</artifactId>
  58. <version>4.1.109.Final</version>
  59. <scope>compile</scope>
  60. <exclusions>
  61. <exclusion>
  62. <groupId>commons-logging</groupId>
  63. <artifactId>commons-logging</artifactId>
  64. </exclusion>
  65. </exclusions>
  66. </dependency>
  67. <dependency>
  68. <groupId>io.netty</groupId>
  69. <artifactId>netty-resolver-dns</artifactId>
  70. <version>4.1.109.Final</version>
  71. <scope>compile</scope>
  72. <exclusions>
  73. <exclusion>
  74. <groupId>commons-logging</groupId>
  75. <artifactId>commons-logging</artifactId>
  76. </exclusion>
  77. </exclusions>
  78. </dependency>
  79. <dependency>
  80. <groupId>io.netty</groupId>
  81. <artifactId>netty-resolver-dns-native-macos</artifactId>
  82. <version>4.1.109.Final</version>
  83. <classifier>osx-x86_64</classifier>
  84. <scope>compile</scope>
  85. <exclusions>
  86. <exclusion>
  87. <groupId>commons-logging</groupId>
  88. <artifactId>commons-logging</artifactId>
  89. </exclusion>
  90. </exclusions>
  91. </dependency>
  92. <dependency>
  93. <groupId>io.netty</groupId>
  94. <artifactId>netty-transport-native-epoll</artifactId>
  95. <version>4.1.109.Final</version>
  96. <classifier>linux-x86_64</classifier>
  97. <scope>compile</scope>
  98. <exclusions>
  99. <exclusion>
  100. <groupId>commons-logging</groupId>
  101. <artifactId>commons-logging</artifactId>
  102. </exclusion>
  103. </exclusions>
  104. </dependency>
  105. <dependency>
  106. <groupId>io.projectreactor.netty</groupId>
  107. <artifactId>reactor-netty-core</artifactId>
  108. <version>1.1.19</version>
  109. <scope>compile</scope>
  110. <exclusions>
  111. <exclusion>
  112. <groupId>commons-logging</groupId>
  113. <artifactId>commons-logging</artifactId>
  114. </exclusion>
  115. </exclusions>
  116. </dependency>
  117. <dependency>
  118. <groupId>io.projectreactor</groupId>
  119. <artifactId>reactor-core</artifactId>
  120. <version>3.5.17</version>
  121. <scope>compile</scope>
  122. <exclusions>
  123. <exclusion>
  124. <groupId>commons-logging</groupId>
  125. <artifactId>commons-logging</artifactId>
  126. </exclusion>
  127. </exclusions>
  128. </dependency>
  129. </dependencies>
  130. </project>