reactor-netty-0.7.8.RELEASE.pom 4.3 KB

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