r2dbc-bom-Arabba-SR12.pom 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 2017-2021 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-SR12</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.8.RELEASE</r2dbc-pool.version>
  45. <r2dbc-proxy.version>0.8.8.RELEASE</r2dbc-proxy.version>
  46. <r2dbc-mssql.version>0.8.8.RELEASE</r2dbc-mssql.version>
  47. <r2dbc-oracle.version>0.1.0</r2dbc-oracle.version>
  48. <r2dbc-postgresql.version>0.8.11.RELEASE</r2dbc-postgresql.version>
  49. <r2dbc-cloud-spanner.version>1.1.0</r2dbc-cloud-spanner.version>
  50. <r2dbc-mysql.version>0.8.2.RELEASE</r2dbc-mysql.version>
  51. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  52. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  53. <r2dbc-h2.version>0.8.5.RELEASE</r2dbc-h2.version>
  54. <r2dbc-spi.version>0.8.6.RELEASE</r2dbc-spi.version>
  55. <r2dbc-mariadb.version>1.0.3</r2dbc-mariadb.version>
  56. </properties>
  57. <dependencyManagement>
  58. <dependencies>
  59. <dependency>
  60. <groupId>com.google.cloud</groupId>
  61. <artifactId>cloud-spanner-r2dbc</artifactId>
  62. <version>${r2dbc-cloud-spanner.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.oracle.database.r2dbc</groupId>
  66. <artifactId>oracle-r2dbc</artifactId>
  67. <version>${r2dbc-oracle.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>io.r2dbc</groupId>
  71. <artifactId>r2dbc-h2</artifactId>
  72. <version>${r2dbc-h2.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.mariadb</groupId>
  76. <artifactId>r2dbc-mariadb</artifactId>
  77. <version>${r2dbc-mariadb.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>io.r2dbc</groupId>
  81. <artifactId>r2dbc-mssql</artifactId>
  82. <version>${r2dbc-mssql.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>dev.miku</groupId>
  86. <artifactId>r2dbc-mysql</artifactId>
  87. <version>${r2dbc-mysql.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>io.r2dbc</groupId>
  91. <artifactId>r2dbc-postgresql</artifactId>
  92. <version>${r2dbc-postgresql.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>io.r2dbc</groupId>
  96. <artifactId>r2dbc-pool</artifactId>
  97. <version>${r2dbc-pool.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>io.r2dbc</groupId>
  101. <artifactId>r2dbc-proxy</artifactId>
  102. <version>${r2dbc-proxy.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>io.r2dbc</groupId>
  106. <artifactId>r2dbc-spi</artifactId>
  107. <version>${r2dbc-spi.version}</version>
  108. </dependency>
  109. </dependencies>
  110. </dependencyManagement>
  111. </project>