2021-12-30 16:44:45 -05:00
|
|
|
<?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>
|
|
|
|
<artifactId>spring-5-reactive-3</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>spring-5-reactive-3</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<description>spring 5 sample project about new features</description>
|
|
|
|
|
|
|
|
<parent>
|
2022-06-20 07:59:38 -04:00
|
|
|
<groupId>com.baeldung.spring.reactive</groupId>
|
|
|
|
<artifactId>spring-5-reactive-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2021-12-30 16:44:45 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectreactor</groupId>
|
|
|
|
<artifactId>reactor-spring</artifactId>
|
|
|
|
<version>${reactor-spring.version}</version>
|
|
|
|
</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>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<reactor-spring.version>1.0.1.RELEASE</reactor-spring.version>
|
|
|
|
</properties>
|
2022-03-13 05:18:44 -04:00
|
|
|
|
2021-12-30 16:44:45 -05:00
|
|
|
</project>
|