reactor-netty-1.1.19.pom 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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</artifactId>
  6. <version>1.1.19</version>
  7. <name>Reactor Netty with all modules</name>
  8. <description>Reactor Netty with all modules</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.projectreactor.netty</groupId>
  45. <artifactId>reactor-netty-core</artifactId>
  46. <version>1.1.19</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.projectreactor.netty</groupId>
  57. <artifactId>reactor-netty-http</artifactId>
  58. <version>1.1.19</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.projectreactor.netty.incubator</groupId>
  69. <artifactId>reactor-netty-incubator-quic</artifactId>
  70. <version>0.1.19</version>
  71. <scope>runtime</scope>
  72. <exclusions>
  73. <exclusion>
  74. <groupId>commons-logging</groupId>
  75. <artifactId>commons-logging</artifactId>
  76. </exclusion>
  77. </exclusions>
  78. </dependency>
  79. </dependencies>
  80. </project>