93 lines
2.8 KiB
XML
93 lines
2.8 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>org.baeldung.examples.r2dbc</groupId>
|
||
|
<artifactId>r2dbc-example</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<name>r2dbc-example</name>
|
||
|
<description>Sample R2DBC Project</description>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
<version>2.1.6.RELEASE</version>
|
||
|
<relativePath /> <!-- lookup parent from repository -->
|
||
|
</parent>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.projectreactor</groupId>
|
||
|
<artifactId>reactor-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
<!-- R2DBC H2 Driver -->
|
||
|
<dependency>
|
||
|
<groupId>io.r2dbc</groupId>
|
||
|
<artifactId>r2dbc-h2</artifactId>
|
||
|
<version>${r2dbc-h2.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-devtools</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<!-- Extra repositories for R2DBC-H2 -->
|
||
|
<repositories>
|
||
|
|
||
|
<repository>
|
||
|
<id>spring-snapshots</id>
|
||
|
<name>Spring Snapshots</name>
|
||
|
<url>https://repo.spring.io/snapshot</url>
|
||
|
<snapshots>
|
||
|
<enabled>true</enabled>
|
||
|
</snapshots>
|
||
|
</repository>
|
||
|
|
||
|
<repository>
|
||
|
<id>spring-milestones</id>
|
||
|
<name>Spring Milestones</name>
|
||
|
<url>https://repo.spring.io/milestone</url>
|
||
|
<snapshots>
|
||
|
<enabled>false</enabled>
|
||
|
</snapshots>
|
||
|
</repository>
|
||
|
|
||
|
</repositories>
|
||
|
|
||
|
<properties>
|
||
|
<java.version>1.8</java.version>
|
||
|
<r2dbc-h2.version>0.8.0.M8</r2dbc-h2.version>
|
||
|
</properties>
|
||
|
|
||
|
</project>
|