rsocket-bom-1.0.0-RC6.pom 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <!-- This module was also published with a richer model, Gradle metadata, -->
  4. <!-- which should be used instead. Do not delete the following line which -->
  5. <!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
  6. <!-- that they should prefer consuming it instead. -->
  7. <!-- do_not_remove: published-with-gradle-metadata -->
  8. <modelVersion>4.0.0</modelVersion>
  9. <groupId>io.rsocket</groupId>
  10. <artifactId>rsocket-bom</artifactId>
  11. <version>1.0.0-RC6</version>
  12. <packaging>pom</packaging>
  13. <name>rsocket-bom</name>
  14. <description>RSocket Java Bill of materials.</description>
  15. <url>http://rsocket.io</url>
  16. <licenses>
  17. <license>
  18. <name>The Apache Software License, Version 2.0</name>
  19. <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
  20. <distribution>repo</distribution>
  21. </license>
  22. </licenses>
  23. <developers>
  24. <developer>
  25. <id>robertroeser</id>
  26. <name>Robert Roeser</name>
  27. <email>robert@netifi.com</email>
  28. </developer>
  29. <developer>
  30. <id>rdegnan</id>
  31. <name>Ryland Degnan</name>
  32. <email>ryland@netifi.com</email>
  33. </developer>
  34. <developer>
  35. <id>yschimke</id>
  36. <name>Yuri Schimke</name>
  37. <email>yuri@schimke.ee</email>
  38. </developer>
  39. <developer>
  40. <id>OlegDokuka</id>
  41. <name>Oleh Dokuka</name>
  42. <email>oleh@netifi.com</email>
  43. </developer>
  44. <developer>
  45. <id>mostroverkhov</id>
  46. <name>Maksym Ostroverkhov</name>
  47. <email>m.ostroverkhov@gmail.com</email>
  48. </developer>
  49. </developers>
  50. <scm>
  51. <connection>scm:git:https://github.com/rsocket/rsocket-java.git</connection>
  52. <developerConnection>scm:git:https://github.com/rsocket/rsocket-java.git</developerConnection>
  53. <url>https://github.com/rsocket/rsocket-java</url>
  54. </scm>
  55. <dependencyManagement>
  56. <dependencies>
  57. <dependency>
  58. <groupId>io.rsocket</groupId>
  59. <artifactId>rsocket-core</artifactId>
  60. <version>1.0.0-RC6</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>io.rsocket</groupId>
  64. <artifactId>rsocket-load-balancer</artifactId>
  65. <version>1.0.0-RC6</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>io.rsocket</groupId>
  69. <artifactId>rsocket-micrometer</artifactId>
  70. <version>1.0.0-RC6</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>io.rsocket</groupId>
  74. <artifactId>rsocket-test</artifactId>
  75. <version>1.0.0-RC6</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>io.rsocket</groupId>
  79. <artifactId>rsocket-transport-local</artifactId>
  80. <version>1.0.0-RC6</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>io.rsocket</groupId>
  84. <artifactId>rsocket-transport-netty</artifactId>
  85. <version>1.0.0-RC6</version>
  86. </dependency>
  87. </dependencies>
  88. </dependencyManagement>
  89. </project>