reactor-stream-2.0.8.RELEASE.pom 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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</groupId>
  6. <artifactId>reactor-stream</artifactId>
  7. <version>2.0.8.RELEASE</version>
  8. <name>Reactor Stream components</name>
  9. <description>Reactor Stream components</description>
  10. <url>https://github.com/reactor/reactor</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. </developers>
  29. <issueManagement>
  30. <system>GitHub Issues</system>
  31. <url>https://github.com/reactor/reactor/issues</url>
  32. </issueManagement>
  33. <scm>
  34. <connection>scm:git:git://github.com/reactor/reactor</connection>
  35. <developerConnection>scm:git:git://github.com/reactor/reactor</developerConnection>
  36. <url>https://github.com/reactor/reactor</url>
  37. </scm>
  38. <dependencies>
  39. <dependency>
  40. <groupId>com.google.code.findbugs</groupId>
  41. <artifactId>jsr305</artifactId>
  42. <version>3.0.0</version>
  43. <scope>compile</scope>
  44. <exclusions>
  45. <exclusion>
  46. <artifactId>commons-logging</artifactId>
  47. <groupId>commons-logging</groupId>
  48. </exclusion>
  49. </exclusions>
  50. <optional>true</optional>
  51. </dependency>
  52. <dependency>
  53. <groupId>io.projectreactor</groupId>
  54. <artifactId>reactor-core</artifactId>
  55. <version>2.0.8.RELEASE</version>
  56. <scope>compile</scope>
  57. <exclusions>
  58. <exclusion>
  59. <artifactId>commons-logging</artifactId>
  60. <groupId>commons-logging</groupId>
  61. </exclusion>
  62. </exclusions>
  63. </dependency>
  64. <dependency>
  65. <groupId>net.openhft</groupId>
  66. <artifactId>chronicle</artifactId>
  67. <version>3.4.2</version>
  68. <scope>compile</scope>
  69. <exclusions>
  70. <exclusion>
  71. <artifactId>commons-logging</artifactId>
  72. <groupId>commons-logging</groupId>
  73. </exclusion>
  74. </exclusions>
  75. <optional>true</optional>
  76. </dependency>
  77. <dependency>
  78. <groupId>net.openhft</groupId>
  79. <artifactId>lang</artifactId>
  80. <version>6.6.2</version>
  81. <scope>compile</scope>
  82. <exclusions>
  83. <exclusion>
  84. <artifactId>commons-logging</artifactId>
  85. <groupId>commons-logging</groupId>
  86. </exclusion>
  87. </exclusions>
  88. <optional>true</optional>
  89. </dependency>
  90. </dependencies>
  91. </project>