Skip to content

r2dbc/r2dbc-bom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reactive Relational Database Connectivity Bill of Materials Java CI with Maven Maven Central

This project contains the Bill of Materials for R2DBC.

Maven

Usage in Maven

<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>io.r2dbc</groupId>
      <artifactId>r2dbc-bom</artifactId>
      <version>(trainname)-[RELEASE|SRnnn]</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
  </dependencies>
</dependencyManagement>

<dependencies>
  <dependency>
    <groupId>io.r2dbc</groupId>
    <artifactId>r2dbc-spi</artifactId>
  </dependency>
</dependencies>

Gradle

Usage in Gradle

dependencies {
  implementation platform("io.r2dbc:r2dbc-bom:(trainname)-[RELEASE|SRnnn]")

  implementation("io.r2dbc:r2dbc-spi") 
}

License

This project is released under version 2.0 of the Apache License.