r2dbc-bom-Arabba-SR8.pom 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 2017-2018 the original author or authors.
  4. ~
  5. ~ Licensed under the Apache License, Version 2.0 (the "License");
  6. ~ you may not use this file except in compliance with the License.
  7. ~ You may obtain a copy of the License at
  8. ~
  9. ~ https://www.apache.org/licenses/LICENSE-2.0
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS,
  13. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ~ See the License for the specific language governing permissions and
  15. ~ limitations under the License.
  16. -->
  17. <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"
  18. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  19. <modelVersion>4.0.0</modelVersion>
  20. <groupId>io.r2dbc</groupId>
  21. <artifactId>r2dbc-bom</artifactId>
  22. <version>Arabba-SR8</version>
  23. <packaging>pom</packaging>
  24. <name>Reactive Relational Database Connectivity - Bill of Materials</name>
  25. <description>Dependency Management for R2DBC Drivers</description>
  26. <url>https://github.com/r2dbc/r2dbc-bom</url>
  27. <licenses>
  28. <license>
  29. <name>Apache License 2.0</name>
  30. <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
  31. <distribution>repo</distribution>
  32. </license>
  33. </licenses>
  34. <developers>
  35. <developer>
  36. <name>R2DBC Working Group</name>
  37. </developer>
  38. </developers>
  39. <scm>
  40. <connection>scm:git:https://github.com/r2dbc/r2dbc-bom</connection>
  41. <url>https://github.com/r2dbc/r2dbc-bom</url>
  42. </scm>
  43. <properties>
  44. <r2dbc-pool.version>0.8.5.RELEASE</r2dbc-pool.version>
  45. <r2dbc-proxy.version>0.8.3.RELEASE</r2dbc-proxy.version>
  46. <r2dbc-mssql.version>0.8.5.RELEASE</r2dbc-mssql.version>
  47. <r2dbc-postgresql.version>0.8.6.RELEASE</r2dbc-postgresql.version>
  48. <r2dbc-cloud-spanner.version>0.2.0</r2dbc-cloud-spanner.version>
  49. <r2dbc-mysql.version>0.8.2.RELEASE</r2dbc-mysql.version>
  50. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  51. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  52. <r2dbc-h2.version>0.8.4.RELEASE</r2dbc-h2.version>
  53. <r2dbc-spi.version>0.8.3.RELEASE</r2dbc-spi.version>
  54. <r2dbc-mariadb.version>0.8.4-rc</r2dbc-mariadb.version>
  55. </properties>
  56. <dependencyManagement>
  57. <dependencies>
  58. <dependency>
  59. <groupId>com.google.cloud</groupId>
  60. <artifactId>cloud-spanner-r2dbc</artifactId>
  61. <version>${r2dbc-cloud-spanner.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>io.r2dbc</groupId>
  65. <artifactId>r2dbc-h2</artifactId>
  66. <version>${r2dbc-h2.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.mariadb</groupId>
  70. <artifactId>r2dbc-mariadb</artifactId>
  71. <version>${r2dbc-mariadb.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>io.r2dbc</groupId>
  75. <artifactId>r2dbc-mssql</artifactId>
  76. <version>${r2dbc-mssql.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>dev.miku</groupId>
  80. <artifactId>r2dbc-mysql</artifactId>
  81. <version>${r2dbc-mysql.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>io.r2dbc</groupId>
  85. <artifactId>r2dbc-postgresql</artifactId>
  86. <version>${r2dbc-postgresql.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>io.r2dbc</groupId>
  90. <artifactId>r2dbc-pool</artifactId>
  91. <version>${r2dbc-pool.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>io.r2dbc</groupId>
  95. <artifactId>r2dbc-proxy</artifactId>
  96. <version>${r2dbc-proxy.version}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>io.r2dbc</groupId>
  100. <artifactId>r2dbc-spi</artifactId>
  101. <version>${r2dbc-spi.version}</version>
  102. </dependency>
  103. </dependencies>
  104. </dependencyManagement>
  105. </project>