Skip to content

Instantly share code, notes, and snippets.

@alexandre-jacquot-ptl
Last active May 17, 2021 15:47
Show Gist options
  • Save alexandre-jacquot-ptl/3871d23be02f4f6e91aadebc7e5e3f6a to your computer and use it in GitHub Desktop.
Save alexandre-jacquot-ptl/3871d23be02f4f6e91aadebc7e5e3f6a to your computer and use it in GitHub Desktop.
r2dbc pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-r2dbc</artifactId>
</dependency>
<dependency>
<groupId>io.r2dbc</groupId>
<artifactId>r2dbc-postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment