rxjava-3.1.8.pom 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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. <!-- This module was also published with a richer model, Gradle metadata, -->
  5. <!-- which should be used instead. Do not delete the following line which -->
  6. <!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
  7. <!-- that they should prefer consuming it instead. -->
  8. <!-- do_not_remove: published-with-gradle-metadata -->
  9. <modelVersion>4.0.0</modelVersion>
  10. <groupId>io.reactivex.rxjava3</groupId>
  11. <artifactId>rxjava</artifactId>
  12. <version>3.1.8</version>
  13. <name>RxJava</name>
  14. <description>Reactive Extensions for Java</description>
  15. <url>https://github.com/ReactiveX/RxJava</url>
  16. <inceptionYear>2013</inceptionYear>
  17. <licenses>
  18. <license>
  19. <name>The Apache Software License, Version 2.0</name>
  20. <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
  21. <distribution>repo</distribution>
  22. </license>
  23. </licenses>
  24. <developers>
  25. <developer>
  26. <id>akarnokd</id>
  27. <name>David Karnok</name>
  28. <url>https://github.com/akarnokd/</url>
  29. </developer>
  30. </developers>
  31. <scm>
  32. <connection>scm:git:git://github.com/ReactiveX/RxJava.git</connection>
  33. <developerConnection>scm:git:ssh://git@github.com/ReactiveX/RxJava.git</developerConnection>
  34. <url>https://github.com/ReactiveX/RxJava</url>
  35. </scm>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.reactivestreams</groupId>
  39. <artifactId>reactive-streams</artifactId>
  40. <version>1.0.4</version>
  41. <scope>compile</scope>
  42. </dependency>
  43. </dependencies>
  44. </project>