rxjava-2.2.21.pom 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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.reactivex.rxjava2</groupId>
  6. <artifactId>rxjava</artifactId>
  7. <version>2.2.21</version>
  8. <name>RxJava</name>
  9. <description>Reactive Extensions for Java</description>
  10. <url>https://github.com/ReactiveX/RxJava</url>
  11. <licenses>
  12. <license>
  13. <name>The Apache Software License, Version 2.0</name>
  14. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  15. <distribution>repo</distribution>
  16. </license>
  17. </licenses>
  18. <developers>
  19. <developer>
  20. <id>akarnokd</id>
  21. <name>David Karnok</name>
  22. <email>akarnokd@gmail.com</email>
  23. </developer>
  24. </developers>
  25. <scm>
  26. <connection>scm:git:git@github.com:ReactiveX/RxJava.git</connection>
  27. <developerConnection>scm:git:git@github.com:ReactiveX/RxJava.git</developerConnection>
  28. <url>scm:git:git@github.com:ReactiveX/RxJava.git</url>
  29. </scm>
  30. <issueManagement>
  31. <system>github</system>
  32. <url>https://github.com/ReactiveX/RxJava/issues</url>
  33. </issueManagement>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.reactivestreams</groupId>
  37. <artifactId>reactive-streams</artifactId>
  38. <version>1.0.3</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>junit</groupId>
  43. <artifactId>junit</artifactId>
  44. <version>4.12</version>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.mockito</groupId>
  49. <artifactId>mockito-core</artifactId>
  50. <version>2.1.0</version>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.reactivestreams</groupId>
  55. <artifactId>reactive-streams-tck</artifactId>
  56. <version>1.0.3</version>
  57. <scope>test</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.testng</groupId>
  61. <artifactId>testng</artifactId>
  62. <version>6.11</version>
  63. <scope>test</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.google.guava</groupId>
  67. <artifactId>guava</artifactId>
  68. <version>24.0-jre</version>
  69. <scope>test</scope>
  70. </dependency>
  71. </dependencies>
  72. </project>